Skip to content

Commit cfa2ed0

Browse files
committed
Initial commit
0 parents  commit cfa2ed0

9 files changed

+5490
-0
lines changed

Screenshot (81).png

312 KB
Loading

Screenshot (82).png

209 KB
Loading

Window+Android_GUI.py

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
from kivymd.app import MDApp
2+
from kivy.lang import Builder
3+
4+
class Test(MDApp):
5+
def build(self):
6+
self.title = 'Programming'
7+
self.theme_cls.primary_palette = "Blue"
8+
return Builder.load_string(
9+
'''
10+
BoxLayout:
11+
orientation:'vertical'
12+
MDToolbar:
13+
title: 'Programming'
14+
md_bg_color: app.theme_cls.primary_color
15+
specific_text_color: 1, 1, 1, 1
16+
17+
MDBottomNavigation:
18+
19+
MDBottomNavigationItem:
20+
name: 'screen 1'
21+
text: 'Python'
22+
icon: 'language-python'
23+
24+
Image:
25+
id: imageView
26+
source: 'python.png'
27+
28+
MDBottomNavigationItem:
29+
name: 'screen 2'
30+
text: 'C++'
31+
icon: 'language-cpp'
32+
33+
Image:
34+
id: imageView
35+
source: 'cp.png'
36+
37+
MDBottomNavigationItem:
38+
name: 'screen 3'
39+
text: 'Kivy'
40+
icon: 'android'
41+
42+
Image:
43+
id: imageView
44+
source: 'kivy.png'
45+
'''
46+
)
47+
48+
Test().run()

and.jpg

182 KB
Loading

android_app.ipynb

+5,440
Large diffs are not rendered by default.

cp.png

25.3 KB
Loading

kivy.png

78.3 KB
Loading

python.png

25.9 KB
Loading

requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
kivymd~=0.104.2.dev0
2+
Kivy~=2.0.0rc4

0 commit comments

Comments
 (0)