This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import kivy | |
from kivy.app import App | |
from kivy.uix.scatter import Scatter | |
from kivy.uix.image import Image | |
from os.path import join | |
class ScatterDemo(App): | |
def build(self): | |
scatter = Scatter() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import kivy | |
from kivy.app import App | |
from kivy.lang import Builder | |
from kivy.uix.gridlayout import GridLayout | |
from kivy.uix.popup import Popup | |
from kivy.properties import StringProperty | |
Builder.load_string(''' | |
<ConfirmPopup>: |
NewerOlder