-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
113 lines (107 loc) · 1.99 KB
/
__init__.py
File metadata and controls
113 lines (107 loc) · 1.99 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
"""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.8.0"
from .components import (
ActivityIndicator,
Button,
Column,
ErrorBoundary,
FlatList,
Image,
Modal,
Pressable,
ProgressBar,
Row,
SafeAreaView,
ScrollView,
Slider,
Spacer,
Switch,
Text,
TextInput,
View,
WebView,
)
from .element import Element
from .hooks import (
Provider,
batch_updates,
component,
create_context,
use_callback,
use_context,
use_effect,
use_memo,
use_navigation,
use_reducer,
use_ref,
use_state,
)
from .navigation import (
NavigationContainer,
create_drawer_navigator,
create_stack_navigator,
create_tab_navigator,
use_focus_effect,
use_route,
)
from .page import create_page
from .style import StyleSheet, ThemeContext
__all__ = [
# Components
"ActivityIndicator",
"Button",
"Column",
"ErrorBoundary",
"FlatList",
"Image",
"Modal",
"Pressable",
"ProgressBar",
"Row",
"SafeAreaView",
"ScrollView",
"Slider",
"Spacer",
"Switch",
"Text",
"TextInput",
"View",
"WebView",
# Core
"Element",
"create_page",
# Hooks
"batch_updates",
"component",
"create_context",
"use_callback",
"use_context",
"use_effect",
"use_focus_effect",
"use_memo",
"use_navigation",
"use_reducer",
"use_ref",
"use_route",
"use_state",
"Provider",
# Navigation
"NavigationContainer",
"create_drawer_navigator",
"create_stack_navigator",
"create_tab_navigator",
# Styling
"StyleSheet",
"ThemeContext",
]