We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e5e30d commit 98ad4abCopy full SHA for 98ad4ab
src/bitmessagekivy/mpybit.py
@@ -319,6 +319,14 @@ def reset_login_screen(self):
319
if self.root.ids.id_newidentity.ids.add_random_bx.children:
320
self.root.ids.id_newidentity.ids.add_random_bx.clear_widgets()
321
322
+ def set_common_header(self):
323
+ """Common header for all the Screens"""
324
+ self.root.ids.toolbar.right_action_items = [
325
+ ['account-plus', lambda x: self.addingtoaddressbook()]]
326
+ self.root.ids.toolbar.left_action_items = [
327
+ ['menu', lambda x: self.root.ids.nav_drawer.set_state("toggle")]]
328
+ return
329
+
330
def open_payment_layout(self, sku):
331
"""It basically open up a payment layout for kivy UI"""
332
pml = PaymentMethodLayout()
0 commit comments