pythonnative 0.22.1__py3-none-any.whl → 0.24.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. pythonnative/__init__.py +43 -50
  2. pythonnative/animated.py +1 -1
  3. pythonnative/appearance.py +124 -0
  4. pythonnative/cli/pn.py +3 -3
  5. pythonnative/components.py +873 -466
  6. pythonnative/diagnostics.py +214 -0
  7. pythonnative/element.py +5 -2
  8. pythonnative/events.py +13 -8
  9. pythonnative/hooks.py +454 -49
  10. pythonnative/hot_reload.py +9 -1
  11. pythonnative/images.py +196 -0
  12. pythonnative/mutations.py +3 -12
  13. pythonnative/native_views/__init__.py +1 -7
  14. pythonnative/native_views/android.py +651 -46
  15. pythonnative/native_views/desktop.py +116 -20
  16. pythonnative/native_views/ios.py +974 -52
  17. pythonnative/navigation.py +41 -17
  18. pythonnative/preview.py +74 -7
  19. pythonnative/project/config.py +1 -9
  20. pythonnative/reconciler.py +863 -441
  21. pythonnative/screen.py +409 -27
  22. pythonnative/storage.py +3 -3
  23. pythonnative/style.py +148 -6
  24. pythonnative/templates/android_template/app/src/main/AndroidManifest.xml +2 -1
  25. pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/PNAccessibilityDelegate.kt +47 -0
  26. pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/PNBorderDrawable.kt +67 -0
  27. pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/PNVirtualListView.java +172 -0
  28. pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/ScreenFragment.kt +22 -0
  29. pythonnative/virtual_rows.py +137 -0
  30. {pythonnative-0.22.1.dist-info → pythonnative-0.24.0.dist-info}/METADATA +5 -4
  31. {pythonnative-0.22.1.dist-info → pythonnative-0.24.0.dist-info}/RECORD +35 -28
  32. {pythonnative-0.22.1.dist-info → pythonnative-0.24.0.dist-info}/WHEEL +1 -1
  33. {pythonnative-0.22.1.dist-info → pythonnative-0.24.0.dist-info}/entry_points.txt +0 -0
  34. {pythonnative-0.22.1.dist-info → pythonnative-0.24.0.dist-info}/licenses/LICENSE +0 -0
  35. {pythonnative-0.22.1.dist-info → pythonnative-0.24.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,137 @@
1
+ """Row subtrees for natively virtualized lists.
2
+
3
+ Native virtualized lists (Android ``RecyclerView`` via
4
+ ``PNVirtualListView``, iOS ``UITableView``) own row lifecycle on the
5
+ platform side: the platform decides when a row enters the viewport,
6
+ hands PythonNative an empty native container, and recycles that
7
+ container when the row scrolls away.
8
+
9
+ Each visible row hosts a full PythonNative subtree driven by its own
10
+ nested [`Reconciler`][pythonnative.reconciler.Reconciler]. The
11
+ [`RowSubtree`][pythonnative.virtual_rows.RowSubtree] class wraps that
12
+ per-row reconciler: it mounts the row element into fresh native views,
13
+ re-reconciles in place when the platform rebinds the same container to
14
+ a different row index (recycling), and tears everything down when the
15
+ list is destroyed.
16
+
17
+ State inside rows works: hooks like ``use_state`` mark the row's own
18
+ reconciler dirty and a guarded flush re-renders just that row.
19
+ """
20
+
21
+ from typing import Any, Callable, Dict
22
+
23
+ from .element import Element
24
+
25
+ __all__ = ["RowSubtree", "RowHostPool"]
26
+
27
+
28
+ class RowSubtree:
29
+ """One list row's mounted PythonNative subtree.
30
+
31
+ Owns a nested reconciler whose viewport is the row's cell size.
32
+ The native root view produced by
33
+ [`mount`][pythonnative.virtual_rows.RowSubtree.mount] is what the
34
+ platform handler attaches to the recycled cell container.
35
+ """
36
+
37
+ def __init__(self) -> None:
38
+ from .native_views import get_registry
39
+ from .reconciler import Reconciler
40
+
41
+ self._reconciler = Reconciler(get_registry())
42
+ # Guarded synchronous flush so ``use_state`` inside a row
43
+ # re-renders the row. Re-entrant requests (a setter firing
44
+ # during the flush itself) are queued and drained after.
45
+ self._flushing = False
46
+ self._flush_queued = False
47
+ self._reconciler._screen_re_render = self._request_flush
48
+ self.native_root: Any = None
49
+
50
+ def _request_flush(self) -> None:
51
+ if self._flushing:
52
+ self._flush_queued = True
53
+ return
54
+ self._flushing = True
55
+ try:
56
+ for _ in range(8):
57
+ self._flush_queued = False
58
+ self.native_root = self._reconciler.flush_dirty()
59
+ if not self._flush_queued:
60
+ break
61
+ finally:
62
+ self._flushing = False
63
+
64
+ def mount(self, element: Element, width: float, height: float) -> Any:
65
+ """Mount ``element`` at the given cell size; returns the native root."""
66
+ self.native_root = self._reconciler.mount(element)
67
+ self._reconciler.set_viewport_size(float(width), float(height))
68
+ return self.native_root
69
+
70
+ def rebind(self, element: Element, width: float, height: float) -> Any:
71
+ """Reconcile the subtree to ``element`` (cell recycled to a new row).
72
+
73
+ Cheaper than unmount + mount when consecutive rows share a
74
+ shape, which is the overwhelmingly common case in lists.
75
+ Returns the (possibly replaced) native root.
76
+ """
77
+ self._reconciler.set_viewport_size(float(width), float(height))
78
+ self.native_root = self._reconciler.reconcile(element)
79
+ return self.native_root
80
+
81
+ def unmount(self) -> None:
82
+ """Destroy the subtree and release its native views."""
83
+ try:
84
+ self._reconciler.unmount()
85
+ except Exception:
86
+ pass
87
+ self.native_root = None
88
+
89
+
90
+ class RowHostPool:
91
+ """Per-list bookkeeping of row subtrees keyed by native container.
92
+
93
+ Platform handlers create one pool per virtualized list view. Keys
94
+ are platform-stable container identities (Java identity hash on
95
+ Android, ``contentView`` pointer on iOS).
96
+ """
97
+
98
+ def __init__(self) -> None:
99
+ self._subtrees: Dict[int, RowSubtree] = {}
100
+
101
+ def bind(
102
+ self,
103
+ container_key: int,
104
+ make_element: Callable[[], Element],
105
+ width: float,
106
+ height: float,
107
+ ) -> Any:
108
+ """Mount or rebind the subtree for ``container_key``.
109
+
110
+ Returns the subtree's native root. The caller must (re)attach
111
+ it to the container: platforms strip a recycled cell's
112
+ children before rebinding, so even an unchanged root needs
113
+ re-attachment.
114
+ """
115
+ element = make_element()
116
+ subtree = self._subtrees.get(container_key)
117
+ if subtree is None:
118
+ subtree = RowSubtree()
119
+ self._subtrees[container_key] = subtree
120
+ return subtree.mount(element, width, height)
121
+ return subtree.rebind(element, width, height)
122
+
123
+ def release(self, container_key: int) -> None:
124
+ """Unmount the subtree for one recycled container, if any."""
125
+ subtree = self._subtrees.pop(container_key, None)
126
+ if subtree is not None:
127
+ subtree.unmount()
128
+
129
+ def release_all(self) -> None:
130
+ """Unmount every subtree (list destroyed)."""
131
+ subtrees = list(self._subtrees.values())
132
+ self._subtrees.clear()
133
+ for subtree in subtrees:
134
+ subtree.unmount()
135
+
136
+ def __len__(self) -> int:
137
+ return len(self._subtrees)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonnative
3
- Version: 0.22.1
3
+ Version: 0.24.0
4
4
  Summary: Cross-platform native UI toolkit for Android and iOS
5
5
  Author: Owen Carey
6
6
  License: MIT License
@@ -104,7 +104,8 @@ PythonNative is a cross-platform toolkit for building native Android and iOS app
104
104
  - **Declarative UI:** Describe *what* your UI should look like with element functions (`Text`, `Button`, `Column`, `Row`, etc.). PythonNative creates and updates native views automatically.
105
105
  - **Rich component library:** 25+ built-in components backed by real native widgets: `TextInput`, `Image` / `ImageBackground`, `ScrollView`, `FlatList` / `SectionList`, `Modal`, `Pressable` / `TouchableOpacity`, `Switch` / `Checkbox`, `Slider`, `SegmentedControl`, `Picker`, `DatePicker`, `ProgressBar` / `ActivityIndicator`, `WebView`, and more.
106
106
  - **Device APIs:** Cross-platform modules for `Camera`, `Location`, `FileSystem`, `Notifications`, `Clipboard`, `Share`, `Linking`, `Permissions`, `AppState`, `NetInfo`, `SecureStore`, `Battery`, `Haptics` / `Vibration`, and `Biometrics`, plus reactive `use_app_state` and `use_net_info` hooks.
107
- - **Hooks and function components:** Manage state with `use_state`, side effects with `use_effect`, and navigation with `use_navigation`, all through one consistent pattern.
107
+ - **Hooks and function components:** Manage state with `use_state`, side effects with `use_effect` / `use_layout_effect`, refs and imperative handles with `use_ref` / `use_imperative_handle`, and navigation with `use_navigation`, all through one consistent pattern. Components can return a single element, a list of siblings, or `None`, and `Fragment`, `Portal`, and reactive `Provider` context work the way they do in React.
108
+ - **Developer feedback that finds your bugs:** In dev mode (`pn preview`, hot reload, or `PN_DEV=1`), uncaught errors from renders, effects, and event handlers show a full-screen RedBox with the traceback; unknown style keys and duplicate list keys print "did you mean" warnings; and conditional hooks raise a `HookOrderError` at the source instead of silently cross-wiring state.
108
109
  - **Typed `style` prop:** Pass all visual and layout properties through a single `style` dict, fully described by the `pn.Style` `TypedDict` and the ergonomic `pn.style(...)` helper for IDE autocomplete and static checking. Compose reusable styles with `StyleSheet`.
109
110
  - **Cross-platform flexbox engine:** A pure-Python, Yoga-style layout engine computes frames once and applies them to native views, so `flex`, `padding`, `aspect_ratio`, and `position: "absolute"` produce the same geometry on Android and iOS.
110
111
  - **Virtual view tree + reconciler:** Element trees are diffed and patched with minimal native mutations, similar to React's reconciliation. Each commit lands as **one batched transaction** of mutation ops, and event callbacks are routed through a tag-based registry so re-renders that only change closures cost zero native calls. State updates re-render **locally**: only the component whose state changed (and its subtree) re-runs, and unchanged leaves reuse cached intrinsic measurements, so deep UIs stay responsive instead of re-rendering the whole app from the root on every tap.
@@ -115,7 +116,7 @@ PythonNative is a cross-platform toolkit for building native Android and iOS app
115
116
  - **Custom-component SDK:** Wrap any platform widget as a first-class element with type-checked props via `pythonnative.sdk` (`Props`, `@native_component`, `element_factory`). Plugins distributed on PyPI auto-register through the `pythonnative.handlers` entry-point group.
116
117
  - **CLI scaffolding:** `pn init` creates a ready-to-run project; `pn run android` and `pn run ios` build and launch your app.
117
118
  - **Instant desktop preview:** `pn preview` renders your app in a native desktop window via Tkinter with Fast Refresh on every save: iterate on layout, state, and navigation in milliseconds without booting a simulator or device. The reconciler, hooks, layout engine, and navigation are the same code that ships to the phone.
118
- - **Native-backed navigation:** Declarative `Stack`, `Tab`, and `Drawer` navigators inspired by React Navigation. The root stack drives the platform's native navigation controller (`UINavigationController` on iOS, AndroidX Navigation Component on Android), so transitions, back gestures, and the hardware back button match what users expect.
119
+ - **Native-backed navigation:** Declarative `Stack`, `Tab`, and `Drawer` navigators inspired by React Navigation. The root stack drives the platform's native navigation controller (`UINavigationController` on iOS, AndroidX Navigation Component on Android), so transitions, back gestures, and the hardware back button match what users expect; `use_back_handler` intercepts the back action when a screen needs to.
119
120
  - **Fast Refresh hot reload:** `pn run --hot-reload` watches `app/` and patches edits into the running app on save, preserving component state across most changes.
120
121
  - **Bundled templates:** Android Gradle and iOS Xcode templates are included, so scaffolding requires no network access.
121
122
 
@@ -140,7 +141,7 @@ def App():
140
141
  pn.Text(f"Count: {count}", style=pn.style(font_size=24, bold=True)),
141
142
  pn.Button(
142
143
  "Tap me",
143
- on_click=lambda: set_count(count + 1),
144
+ on_press=lambda: set_count(count + 1),
144
145
  ),
145
146
  style=pn.style(spacing=12, padding=16),
146
147
  )
@@ -1,28 +1,32 @@
1
- pythonnative/__init__.py,sha256=ZdUkmJeUWu3oWKFzUxJ6O56P8_7nGgqirhQp_csapHQ,8551
1
+ pythonnative/__init__.py,sha256=HcUCPSMZBt7N1-AFt4u6doqhgt_VOgImWEASJk5Tj6A,8394
2
2
  pythonnative/_ios_log.py,sha256=Oi7V28VxcVoZyrpAirvLeEmUW18McqnU87V4d37Zzlw,2582
3
3
  pythonnative/alerts.py,sha256=mIANysFlaHwL5EqKnvNcyiJN9rGiZi9XDrD9Jpz1RFM,9340
4
- pythonnative/animated.py,sha256=IBokHVfp_Ud5VC8b4drY9DX8A4uG9wqRUjcW3y-EtkI,36233
5
- pythonnative/components.py,sha256=0BjsgQUVbiUZkpsX_0vxpuRs8zGV7P9V2HEnZHFEcAE,85248
6
- pythonnative/element.py,sha256=W9varJj0Cl9HpckL8BcsC1u4ryUQOPVMrvetro4ilAE,2725
7
- pythonnative/events.py,sha256=H3XmZW99M16Q1OiRq1NbS6e-Pdopi6piCh6qdkmEu40,7632
4
+ pythonnative/animated.py,sha256=2t6thUzmmapccP6ziW-x2tr8A2LCrWQoF8KqoETdSDY,36226
5
+ pythonnative/appearance.py,sha256=vMkDRIz9ptaprMmlPmiYJLVwrDslfnc1bhwyE27M2ZI,3891
6
+ pythonnative/components.py,sha256=61DKYxdcfaw1B4LqS5ho0aUksxjkA2zq4BB1cJiQHzA,106286
7
+ pythonnative/diagnostics.py,sha256=F6Ym163wSZI93j_ScwRWULIuxRxQ39f5lqvXRDP93po,7078
8
+ pythonnative/element.py,sha256=jbCMPiVq4oRgbSAbKdltBJ1BU6Aom1qKoc6-FsbpJ74,2902
9
+ pythonnative/events.py,sha256=EFYz8HxVOTA3soAe0Z9P2gZN9ShLjXhKH7I34DmnNbM,7895
8
10
  pythonnative/gestures.py,sha256=6qe_s3Cv2M5_V-_PgAQ5y9QbYV812B0xVmh8dRDHYMY,29940
9
- pythonnative/hooks.py,sha256=spKlbJSFQNg1jKTR9BFwyAf9soYDE5A8_L43W4cu9wU,38987
10
- pythonnative/hot_reload.py,sha256=g-PKXRw7IXZgLyuGwjQmztH10JjT8ULM-szrWWTKe7U,25024
11
+ pythonnative/hooks.py,sha256=iOngNAtCeQPwdL0zwvgJ1TOKSarObVSG_zIhSAyKhPo,54439
12
+ pythonnative/hot_reload.py,sha256=2HI6u-fc4JRudc35BAe8RXmPIXLWh1imoH4fMVqu_Ks,25502
13
+ pythonnative/images.py,sha256=JFjBJdZzZoQmAOfQ7QHqi7dYJ75XTs3u2lweQHGbdPc,6466
11
14
  pythonnative/layout.py,sha256=Ck_FCLSk0g4hdOzHo0c50cbvLe8Q8caQAxywXgnFhKM,49077
12
- pythonnative/mutations.py,sha256=aIhA4ESajEIPb1FxGJ6KkJ19vhs6wo1w82A5d52ql9s,4021
13
- pythonnative/navigation.py,sha256=4U57lHqiJJbqRJdTdvveRHKJ58BJhrwvkDOSoFt02I8,35566
15
+ pythonnative/mutations.py,sha256=whmxO6ENWjm-yYH0QteoCV1Gdw_v-fJrhicMQJ5A0rk,3827
16
+ pythonnative/navigation.py,sha256=TCDD6MGCEW9qBDZFCJhymUVEtoeNPhQgvio8IbgL0pU,36552
14
17
  pythonnative/net.py,sha256=8D7EyEC8-JkYxlrtVfTDApOGzzdcA4P4kaCdYBBZI8E,8082
15
18
  pythonnative/platform.py,sha256=WtjxR04CqVhSnjJu-3upk8bwXYaSWr2N0MOVoNov-h0,4994
16
19
  pythonnative/platform_metrics.py,sha256=1r1kMbgS9LcVTbdpP5qRD4oHEvw70te5BXEyd_16Ihc,8961
17
- pythonnative/preview.py,sha256=ZBXOtXuFBeaRXdClhkpIhcQWsLu9fho0qChfPxnbr7w,16982
18
- pythonnative/reconciler.py,sha256=QFIFG3KjgoPas8LVDHRWouWEEtunegPz-jl6i5Hwno8,57082
20
+ pythonnative/preview.py,sha256=RoZv1s142GWj9xpg9v5Kh-0YuuhpEfwwb_JdnzboRLw,19355
21
+ pythonnative/reconciler.py,sha256=_3-TZ7cYFvcF9Jeu3_lHa33qwfXy4OkWAVfSaYpRpNY,74426
19
22
  pythonnative/runtime.py,sha256=Ij3xxr_RyWESX7jP7b-RpsYjqjsJi1OpoV3WL3WTBWU,18245
20
- pythonnative/screen.py,sha256=GxDA8xE1GG35Evf4XwMq6tLTzcggkHN26HtVJFLeHOQ,64834
21
- pythonnative/storage.py,sha256=pp2mqlAy7wPr8vNwtcmalxc2658lD6z7PU4ilbnxAwE,12001
22
- pythonnative/style.py,sha256=lvJEWm9Gkp77_QQ1PMyum9CLEXFkyqT_7MtCyPZYMsA,15159
23
+ pythonnative/screen.py,sha256=_ylaGFviZGwllEd1akQRNJIuXIsEQf_81QkFkjblu7k,80851
24
+ pythonnative/storage.py,sha256=3brJoo0X6YuxXiAv67fHwDotPRazVP3l8dxiRiEnNEo,11995
25
+ pythonnative/style.py,sha256=-XP1vbqiTEkQraFF0JknZLHIzVsou-GUhrKz5zQ7vVk,20030
23
26
  pythonnative/utils.py,sha256=-hwe_YS19ebpjeygdl3dGeVsYzO4G74rYD53svSi0rI,7593
27
+ pythonnative/virtual_rows.py,sha256=4YK3CeZobW-6F6GCXzGNFfmOaAiigmH4HXtqjYDRbyU,5056
24
28
  pythonnative/cli/__init__.py,sha256=NM1psvKe8jT0vzp8Ak4MMoygZz4P_msk5g-YEsY8xLk,232
25
- pythonnative/cli/pn.py,sha256=a0DXYHvcDZtfsmC91mIKgCFTO1Y8T-kkS68RH8_7kaY,28191
29
+ pythonnative/cli/pn.py,sha256=jReGw7kQY8dlrPodtBo5Aez7j9CfGUu4kMMMeUWCdPM,28191
26
30
  pythonnative/native_modules/__init__.py,sha256=pgigpHuzT-rqwcjlwJvu93_4L8Nozal1HJid0S_JlmM,2636
27
31
  pythonnative/native_modules/app_state.py,sha256=EnfChi_YWEgUpZosUiBQh0CmblBZFw8ZGaW1NKIJ4WM,2666
28
32
  pythonnative/native_modules/battery.py,sha256=gOU9aN5fCmWfHgTXPD-BgvatdQnyUjfVfsJM7PQ_ARA,4317
@@ -38,15 +42,15 @@ pythonnative/native_modules/notifications.py,sha256=WVtzdimc_aGfnxU6syCFPkjHF9YR
38
42
  pythonnative/native_modules/permissions.py,sha256=ABIWiCuLIiZJmfA-B7dnw56_Iz7ApGzdtLAs6X694QU,6704
39
43
  pythonnative/native_modules/secure_store.py,sha256=PsnUwHzUPt-CzCAwM6BhidOBi9yofRD2uNtQIqAGofU,5953
40
44
  pythonnative/native_modules/share.py,sha256=B9ovknmnjeQvGQ8MQ14Hmq6E1x-JA469APMburJ0KUg,4727
41
- pythonnative/native_views/__init__.py,sha256=8RK0o8pixuqyHhiT5HMWDiya2vHBRJhntjjXzB2HB-U,15638
42
- pythonnative/native_views/android.py,sha256=RAly8MHQMWt2SY6GNqQB_FYeZpKmivo5Ja7N5LAuAo8,109796
45
+ pythonnative/native_views/__init__.py,sha256=93v7pt0_7f8BWqOiwSvlq20F1oJLfCnmQBvLlCDA-Xk,15340
46
+ pythonnative/native_views/android.py,sha256=YKokykZUkMT7N2f2Ug0uShquCdwI5joYmdVp5DzATFA,133786
43
47
  pythonnative/native_views/base.py,sha256=NFDlEIoKCINzcVkf2uobT9TgujPb1RClLS3TzwH72MY,9668
44
- pythonnative/native_views/desktop.py,sha256=731Uz-TPb0lGhPAcAo_8l-8B62lgZIr8h_H1BViSFGw,57116
45
- pythonnative/native_views/ios.py,sha256=ySsTKYRcVLfbaw60U6yNTguEOSYqXLC_8xy59G4hjA4,141502
48
+ pythonnative/native_views/desktop.py,sha256=ZZZ1aw9iRswAfkVoYMUsFz2ztppRgFpMxxwrBkNS7lw,61192
49
+ pythonnative/native_views/ios.py,sha256=zLyaCGFSpcwgtpZd2daCv7TPjCBNPL-F23byLOflnYA,178536
46
50
  pythonnative/project/__init__.py,sha256=kAhWLONs53H1L7xVtczLmzYcQSOOkdRZTAJnIMhpBts,2064
47
51
  pythonnative/project/android.py,sha256=SX0uu4-tz4WdYAf9sbycQPSmoQ8fbtAADeUWk9G8ybM,19127
48
52
  pythonnative/project/builder.py,sha256=DokY-YidsDeWYgaixrpD3Kzp7_XudibltI8X_WdBIcE,19096
49
- pythonnative/project/config.py,sha256=LeaRgwXznuk2hazbM2aOIDGeZ6FBoSkUBVmony5Wg-Q,24210
53
+ pythonnative/project/config.py,sha256=jH9_MnE5kmKGe3yA4tfPHic5LlKcWys58jxOmUSJTd4,23839
50
54
  pythonnative/project/doctor.py,sha256=ETg-lvEyaNzaxgsDn9f4DBapNKBttMHA-9kwgX-yb3g,7943
51
55
  pythonnative/project/icons.py,sha256=GaXpktQ9v4v2JZPM3ppueNPmwjTuFiLanHJDaZbLGuo,7945
52
56
  pythonnative/project/ios.py,sha256=DHQs_Wf_uJ9eoI3gqGmcjFuF2shwMwa8mLKGtuTDffw,14004
@@ -62,10 +66,13 @@ pythonnative/templates/android_template/settings.gradle,sha256=GKZiYUYWsaXxaiKOB
62
66
  pythonnative/templates/android_template/app/build.gradle,sha256=zHYbYXjKUiW-ZSYXT2GfveyVnjOCNLXvXpPxI76O5t4,1864
63
67
  pythonnative/templates/android_template/app/proguard-rules.pro,sha256=Vv2WDPIl9spA-YKxOl27DYvD394T_3ZCKCXGBw0KGJA,750
64
68
  pythonnative/templates/android_template/app/src/androidTest/java/com/pythonnative/android_template/ExampleInstrumentedTest.kt,sha256=Am8Yla3i1eR_ac5FVgPU_RsuMrCbyT79h1BcajGE-zI,693
65
- pythonnative/templates/android_template/app/src/main/AndroidManifest.xml,sha256=MdWrXxOrwUjnqtDbV952NI4nVF2dTUX9xwSS8chhd9I,940
69
+ pythonnative/templates/android_template/app/src/main/AndroidManifest.xml,sha256=eprO6TQuZN0UEVsMcg2oXDaPUuVuYJWMg3GScNsfC8k,995
66
70
  pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/MainActivity.kt,sha256=1dSBEX-AB2aUPxFFDnWwcmVHRi00T-iwbXi4yt4RQk8,1481
67
71
  pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/Navigator.kt,sha256=mDfzKTTXRP-zbSnfIPxAYyjtr9_IyyQwXM-dovcfVbg,1723
68
- pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/ScreenFragment.kt,sha256=lSxWYH6cGDpGalo0kDzTAT5H3NuhJVLT7BQYcfCydOc,5138
72
+ pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/PNAccessibilityDelegate.kt,sha256=R2PC6BA3VCaKET0XV33tXTFf4Ht9udvvLu9TT_RfWp4,1819
73
+ pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/PNBorderDrawable.kt,sha256=ejdFhpzn0-2TZa0nvG41r2m0xoejU2fXXuJSmO6tnBU,2205
74
+ pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/PNVirtualListView.java,sha256=1ve74nvOFqsduyaLOGPb8Sd9Jrwz-sELRB9y1NMN1AI,6072
75
+ pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/ScreenFragment.kt,sha256=pMxpHiguY8MToTZaMKwEF88xaGh-zLqcfYy1g5DV6eI,6051
69
76
  pythonnative/templates/android_template/app/src/main/res/drawable/ic_launcher_background.xml,sha256=7UI8c6b0Ck0pCfCQHmBSezqAfNWeG1WTvKrhgIscYyE,5606
70
77
  pythonnative/templates/android_template/app/src/main/res/drawable-v24/ic_launcher_foreground.xml,sha256=AdGmpsEjTrf-Jw0JfrKD1yucla5RGIhvG2VzqtKA8fc,1702
71
78
  pythonnative/templates/android_template/app/src/main/res/layout/activity_main.xml,sha256=HIgdCNktb3YoJC8QOTIv-0qZRtMRoPdARK59nyYFO6g,461
@@ -105,9 +112,9 @@ pythonnative/templates/ios_template/ios_template.xcodeproj/project.xcworkspace/x
105
112
  pythonnative/templates/ios_template/ios_templateTests/ios_templateTests.swift,sha256=YnwzZx7yXB13xKAXEGNgz17VuhWeqkHTRTtBJ2Vu3_E,1238
106
113
  pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITests.swift,sha256=HLRr3cmouRqQeXG13WrZ2XSAmgMgCsNXfZpbwkxeFcs,1385
107
114
  pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITestsLaunchTests.swift,sha256=f5JrG0uVtLMeJQy26Yyz7Om-JUkT220osqcbeIVkj2g,815
108
- pythonnative-0.22.1.dist-info/licenses/LICENSE,sha256=A69iG7TIAe6KkGQf6xoVHkc5JSZtOr5eRSvC5iuivnI,1067
109
- pythonnative-0.22.1.dist-info/METADATA,sha256=8AdKrxbqYwpGdyEc69TN-a6_4T1Sg20NDHkMv1sEbV4,10347
110
- pythonnative-0.22.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
111
- pythonnative-0.22.1.dist-info/entry_points.txt,sha256=iUtDawWSAJAEyWTycpZxDuYz73ol31butpzDIEAgPO0,48
112
- pythonnative-0.22.1.dist-info/top_level.txt,sha256=kT4SEATY2ywzrZ2Pgea6_zxyym44Q_PbOsUoOYjJLFE,13
113
- pythonnative-0.22.1.dist-info/RECORD,,
115
+ pythonnative-0.24.0.dist-info/licenses/LICENSE,sha256=A69iG7TIAe6KkGQf6xoVHkc5JSZtOr5eRSvC5iuivnI,1067
116
+ pythonnative-0.24.0.dist-info/METADATA,sha256=ad8csbo8lKOGtl9VfjTwTv4k5rx8E8UoKVHKbgPpmGE,11050
117
+ pythonnative-0.24.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
118
+ pythonnative-0.24.0.dist-info/entry_points.txt,sha256=iUtDawWSAJAEyWTycpZxDuYz73ol31butpzDIEAgPO0,48
119
+ pythonnative-0.24.0.dist-info/top_level.txt,sha256=kT4SEATY2ywzrZ2Pgea6_zxyym44Q_PbOsUoOYjJLFE,13
120
+ pythonnative-0.24.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (82.0.1)
2
+ Generator: setuptools (83.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5