moving a kivy module to a separate folder having Ui too

This commit is contained in:
surbhi 2018-07-09 16:47:59 +05:30
parent c22fd4e8a7
commit a859dd78e7
No known key found for this signature in database
GPG Key ID: 88928762974D3618
3 changed files with 7 additions and 7 deletions

View File

View File

@ -75,7 +75,7 @@
on_press: on_press:
root.manager.current = 'email' root.manager.current = 'email'
Button: Button:
text: "sent" text: "sents"
background_color: (0,0,0,0) background_color: (0,0,0,0)
size_hint_y: 0.3 size_hint_y: 0.3
size_hint_x: 0.1 size_hint_x: 0.1

View File

@ -1,5 +1,10 @@
import time 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 debug import logger
from addresses import addBMIfNotPresent, decodeAddress from addresses import addBMIfNotPresent, decodeAddress
@ -10,18 +15,13 @@ from helper_ackPayload import genAckPayload
from helper_sql import sqlExecute 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 queues
import shutdown import shutdown
statusIconColor = 'red' statusIconColor = 'red'
class LoginScreen(GridLayout): class LoginScreen(BoxLayout):
"""This will use for sending message to recipents from mobile client.""" """This will use for sending message to recipents from mobile client."""
def send(self): def send(self):