This file contains hidden or 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
| title=pause resume test | |
| author=GottaDiveIntoPython | |
| orientation=sensor |
This file contains hidden or 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
| from kivy.base import EventLoop, runTouchApp | |
| from kivy.factory import Factory | |
| from kivy.lang import Builder | |
| from kivy.graphics import RenderContext | |
| from kivy.properties import NumericProperty | |
| from kivy.graphics.transformation import Matrix | |
| from kivy.clock import Clock | |
| EventLoop.ensure_window() |
This file contains hidden or 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
| from kivy.app import runTouchApp | |
| from kivy.core.window import Window | |
| from kivy.factory import Factory | |
| from kivy.lang import Builder | |
| from kivy.graphics import RenderContext | |
| from kivy.properties import StringProperty | |
| Builder.load_string(r''' | |
| <ShaderWidget>: |
This file contains hidden or 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
| from random import sample | |
| from string import ascii_lowercase | |
| from kivy.config import Config | |
| Config.set('modules', 'inspector', '') | |
| from kivy.app import App | |
| from kivy.lang import Builder | |
| from kivy.uix.boxlayout import BoxLayout | |
| from kivy.factory import Factory |
This file contains hidden or 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 random | |
| from kivy.base import runTouchApp | |
| from kivy.lang import Builder | |
| from kivy.factory import Factory | |
| from kivy.properties import ListProperty | |
| import kivy.utils | |
| from kivy.garden.magnet import Magnet |
NewerOlder