-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
102 lines (94 loc) · 1.79 KB
/
__init__.py
File metadata and controls
102 lines (94 loc) · 1.79 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
"""PythonNative — declarative native UI for Android and iOS.
Public API::
import pythonnative as pn
@pn.component
def counter(initial=0):
count, set_count = pn.use_state(initial)
return pn.Column(
pn.Text(f"Count: {count}", font_size=24),
pn.Button("+", on_click=lambda: set_count(count + 1)),
spacing=12,
)
class MainPage(pn.Page):
def __init__(self, native_instance):
super().__init__(native_instance)
def render(self):
return pn.Column(
counter(initial=0),
counter(initial=10),
spacing=16,
padding=16,
)
"""
__version__ = "0.6.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_ref,
use_state,
)
from .page import 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",
"Page",
# Hooks
"component",
"create_context",
"use_callback",
"use_context",
"use_effect",
"use_memo",
"use_ref",
"use_state",
"Provider",
# Styling
"StyleSheet",
"ThemeContext",
]