├── .gitignore ├── README.md ├── libs ├── applibs │ ├── constants.py │ └── utils.py └── uix │ ├── baseclass │ ├── auth_screen.py │ ├── home_screen.py │ └── settings_screen.py │ ├── kv │ ├── auth_screen.kv │ ├── home_screen.kv │ └── settings_screen.kv │ └── root.py ├── main.py └── screens.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/README.md -------------------------------------------------------------------------------- /libs/applibs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/applibs/constants.py -------------------------------------------------------------------------------- /libs/applibs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/applibs/utils.py -------------------------------------------------------------------------------- /libs/uix/baseclass/auth_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/uix/baseclass/auth_screen.py -------------------------------------------------------------------------------- /libs/uix/baseclass/home_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/uix/baseclass/home_screen.py -------------------------------------------------------------------------------- /libs/uix/baseclass/settings_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/uix/baseclass/settings_screen.py -------------------------------------------------------------------------------- /libs/uix/kv/auth_screen.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/uix/kv/auth_screen.kv -------------------------------------------------------------------------------- /libs/uix/kv/home_screen.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/uix/kv/home_screen.kv -------------------------------------------------------------------------------- /libs/uix/kv/settings_screen.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/uix/kv/settings_screen.kv -------------------------------------------------------------------------------- /libs/uix/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/libs/uix/root.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/main.py -------------------------------------------------------------------------------- /screens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kulothunganug/kivy-lazy-loading-template/HEAD/screens.json --------------------------------------------------------------------------------