Changes made for Exit application button feature with trash enhancement

This commit is contained in:
surbhi 2018-07-19 17:17:37 +05:30
parent bb8d4c5a1f
commit 1adcf7f3f4
No known key found for this signature in database
GPG Key ID: 88928762974D3618
2 changed files with 11 additions and 7 deletions

View File

@ -106,9 +106,7 @@ BoxLayout:
<Trash>: <Trash>:
name: 'trash' name: 'trash'
Label:
text:"I am in card"
color: 0,0,0,1
<Dialog>: <Dialog>:
name: 'dialog' name: 'dialog'
Label: Label:
@ -117,7 +115,7 @@ BoxLayout:
<Test>: <Test>:
name: 'test' name: 'test'
Label: Label:
text:"a rapid data env" text:"I am in test"
color: 0,0,0,1 color: 0,0,0,1
<Create>: <Create>:

View File

@ -14,7 +14,6 @@ from kivy.uix.label import Label
from kivy.uix.textinput import TextInput from kivy.uix.textinput import TextInput
from kivy.clock import Clock from kivy.clock import Clock
from kivy.uix.boxlayout import BoxLayout from kivy.uix.boxlayout import BoxLayout
from kivy.core.window import Window
from os import environ from os import environ
import shutdown import shutdown
@ -31,7 +30,6 @@ class NavigateApp(App):
print ("**************************EXITING FROM APPLICATION*****************************") print ("**************************EXITING FROM APPLICATION*****************************")
App.get_running_app().stop() App.get_running_app().stop()
shutdown.doCleanShutdown() shutdown.doCleanShutdown()
Window.close()
class Navigator(NavigationDrawer): class Navigator(NavigationDrawer):
image_source = StringProperty('images/me.jpg') image_source = StringProperty('images/me.jpg')
@ -61,7 +59,15 @@ class Sent(Screen):
self.add_widget(my_box1) self.add_widget(my_box1)
class Trash(Screen): class Trash(Screen):
pass def __init__ (self,**kwargs):
super (Trash, self).__init__(**kwargs)
val_y = .1
val_z = 0
my_box1 = BoxLayout(orientation='vertical')
for i in range(1, 5):
my_box1.add_widget(Label(text="I am in trash", size_hint = (.3,.1), pos_hint = {'x': val_z,'top': val_y},color = (0,0,0,1), background_color = (0,0,0,0)))
val_y+=.1
self.add_widget(my_box1)
class Dialog(Screen): class Dialog(Screen):