You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Get checkbox and card for default requirements: boot stock once."""
260
+
boot_stock_checkbox=Checkbox(
261
+
label="Booted the stock OS at least once.",
262
+
on_change=self.enable_continue_button,
263
+
)
264
+
boot_stock_check_card=Card(
265
+
Container(
266
+
content=Column(
267
+
[
268
+
Markdown(
269
+
"""
270
+
#### Boot your device with the stock OS at least once and check every functionality.
271
+
Make sure that you can send and receive SMS and place and receive calls (also via WiFi and LTE, if available), otherwise it won\'t work on LineageOS either! Additionally, some devices require that VoLTE/VoWiFi be utilized once on stock to provision IMS.
272
+
"""
273
+
),
274
+
boot_stock_checkbox,
275
+
]
276
+
),
277
+
padding=10,
278
+
),
279
+
)
280
+
returnboot_stock_checkbox, boot_stock_check_card
281
+
254
282
defget_lock_check(self):
255
283
"""Get the checkbox and card for the default requirement: disable lock code and fingerprint."""
0 commit comments