moving a kivy module to a separate folder having Ui too
This commit is contained in:
parent
c22fd4e8a7
commit
a859dd78e7
0
src/bitmessagekivy/__init__.py
Normal file
0
src/bitmessagekivy/__init__.py
Normal file
|
@ -75,7 +75,7 @@
|
|||
on_press:
|
||||
root.manager.current = 'email'
|
||||
Button:
|
||||
text: "sent"
|
||||
text: "sents"
|
||||
background_color: (0,0,0,0)
|
||||
size_hint_y: 0.3
|
||||
size_hint_x: 0.1
|
|
@ -1,5 +1,10 @@
|
|||
import time
|
||||
|
||||
from kivy.app import App
|
||||
from kivy.core.window import Window
|
||||
from kivy.uix.boxlayout import BoxLayout
|
||||
from kivy.uix.gridlayout import GridLayout
|
||||
|
||||
from debug import logger
|
||||
|
||||
from addresses import addBMIfNotPresent, decodeAddress
|
||||
|
@ -10,18 +15,13 @@ from helper_ackPayload import genAckPayload
|
|||
|
||||
from helper_sql import sqlExecute
|
||||
|
||||
from kivy.app import App
|
||||
from kivy.core.window import Window
|
||||
# from kivy.uix.boxlayout import BoxLayout
|
||||
from kivy.uix.gridlayout import GridLayout
|
||||
|
||||
import queues
|
||||
|
||||
import shutdown
|
||||
statusIconColor = 'red'
|
||||
|
||||
|
||||
class LoginScreen(GridLayout):
|
||||
class LoginScreen(BoxLayout):
|
||||
"""This will use for sending message to recipents from mobile client."""
|
||||
|
||||
def send(self):
|
Loading…
Reference in New Issue
Block a user