-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
92 lines (86 loc) · 1.54 KB
/
__init__.py
File metadata and controls
92 lines (86 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
"""PythonNative — declarative native UI for Android and iOS.
Public API::
import pythonnative as pn
@pn.component
def App():
count, set_count = pn.use_state(0)
return pn.Column(
pn.Text(f"Count: {count}", style={"font_size": 24}),
pn.Button("+", on_click=lambda: set_count(count + 1)),
style={"spacing": 12},
)
"""
__version__ = "0.7.0"
from .components import (
ActivityIndicator,
Button,
Column,
FlatList,
Image,
Modal,
Pressable,
ProgressBar,
Row,
SafeAreaView,
ScrollView,
Slider,
Spacer,
Switch,
Text,
TextInput,
View,
WebView,
)
from .element import Element
from .hooks import (
Provider,
component,
create_context,
use_callback,
use_context,
use_effect,
use_memo,
use_navigation,
use_ref,
use_state,
)
from .page import create_page
from .style import StyleSheet, ThemeContext
__all__ = [
# Components
"ActivityIndicator",
"Button",
"Column",
"FlatList",
"Image",
"Modal",
"Pressable",
"ProgressBar",
"Row",
"SafeAreaView",
"ScrollView",
"Slider",
"Spacer",
"Switch",
"Text",
"TextInput",
"View",
"WebView",
# Core
"Element",
"create_page",
# Hooks
"component",
"create_context",
"use_callback",
"use_context",
"use_effect",
"use_memo",
"use_navigation",
"use_ref",
"use_state",
"Provider",
# Styling
"StyleSheet",
"ThemeContext",
]