flet-datatable2 0.2.0.dev505__py3-none-any.whl → 0.70.0.dev6301__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.

Potentially problematic release.


This version of flet-datatable2 might be problematic. Click here for more details.

@@ -17,68 +17,67 @@ class DataRow2(ft.DataRow):
17
17
 
18
18
  decoration: Optional[ft.BoxDecoration] = None
19
19
  """
20
- Decoration to be applied to this row.
21
-
20
+ Decoration to be applied to this row.
21
+
22
22
  Note:
23
23
  If provided, [`DataTable2.divider_thickness`][(p).] has no effect.
24
24
  """
25
25
 
26
26
  specific_row_height: Optional[ft.Number] = None
27
27
  """
28
- Specific row height.
29
-
28
+ Specific row height.
29
+
30
30
  Falls back to [`DataTable2.data_row_height`][(p).] if not set.
31
31
  """
32
32
 
33
33
  on_double_tap: Optional[ft.ControlEventHandler["DataRow2"]] = None
34
34
  """
35
35
  Fires when the row is double-tapped.
36
-
36
+
37
37
  Note:
38
- Won't be called if tapped cell has any tap event handlers
39
- ([`on_tap`][flet.DataCell.on_tap],
40
- [`on_double_tap`][flet.DataCell.on_double_tap],
41
- [`on_long_press`][flet.DataCell.on_long_press],
42
- [`on_tap_cancel`][flet.DataCell.on_tap_cancel],
38
+ Won't be called if tapped cell has any tap event handlers
39
+ ([`on_tap`][flet.DataCell.on_tap],
40
+ [`on_double_tap`][flet.DataCell.on_double_tap],
41
+ [`on_long_press`][flet.DataCell.on_long_press],
42
+ [`on_tap_cancel`][flet.DataCell.on_tap_cancel],
43
43
  [`on_tap_down`][flet.DataCell.on_tap_down]) set.
44
44
  """
45
45
 
46
46
  on_secondary_tap: Optional[ft.ControlEventHandler["DataRow2"]] = None
47
47
  """
48
48
  Fires when the row is right-clicked (secondary tap).
49
-
49
+
50
50
  Note:
51
- Won't be called if tapped cell has any tap event handlers
52
- ([`on_tap`][flet.DataCell.on_tap],
53
- [`on_double_tap`][flet.DataCell.on_double_tap],
54
- [`on_long_press`][flet.DataCell.on_long_press],
55
- [`on_tap_cancel`][flet.DataCell.on_tap_cancel],
51
+ Won't be called if tapped cell has any tap event handlers
52
+ ([`on_tap`][flet.DataCell.on_tap],
53
+ [`on_double_tap`][flet.DataCell.on_double_tap],
54
+ [`on_long_press`][flet.DataCell.on_long_press],
55
+ [`on_tap_cancel`][flet.DataCell.on_tap_cancel],
56
56
  [`on_tap_down`][flet.DataCell.on_tap_down]) set.
57
57
  """
58
58
 
59
59
  on_secondary_tap_down: Optional[ft.ControlEventHandler["DataRow2"]] = None
60
60
  """
61
61
  Fires when the row is right-clicked (secondary tap down).
62
-
62
+
63
63
  Note:
64
- Won't be called if tapped cell has any tap event handlers
65
- ([`on_tap`][flet.DataCell.on_tap],
66
- [`on_double_tap`][flet.DataCell.on_double_tap],
67
- [`on_long_press`][flet.DataCell.on_long_press],
68
- [`on_tap_cancel`][flet.DataCell.on_tap_cancel],
64
+ Won't be called if tapped cell has any tap event handlers
65
+ ([`on_tap`][flet.DataCell.on_tap],
66
+ [`on_double_tap`][flet.DataCell.on_double_tap],
67
+ [`on_long_press`][flet.DataCell.on_long_press],
68
+ [`on_tap_cancel`][flet.DataCell.on_tap_cancel],
69
69
  [`on_tap_down`][flet.DataCell.on_tap_down]) set.
70
70
  """
71
71
 
72
72
  on_tap: Optional[ft.EventHandler[ft.TapEvent["DataRow2"]]] = None
73
73
  """
74
74
  Fires when the row is tapped.
75
-
75
+
76
76
  Note:
77
- Won't be called if tapped cell has any tap event handlers
78
- ([`on_tap`][flet.DataCell.on_tap],
79
- [`on_double_tap`][flet.DataCell.on_double_tap],
80
- [`on_long_press`][flet.DataCell.on_long_press],
81
- [`on_tap_cancel`][flet.DataCell.on_tap_cancel],
77
+ Won't be called if tapped cell has any tap event handlers
78
+ ([`on_tap`][flet.DataCell.on_tap],
79
+ [`on_double_tap`][flet.DataCell.on_double_tap],
80
+ [`on_long_press`][flet.DataCell.on_long_press],
81
+ [`on_tap_cancel`][flet.DataCell.on_tap_cancel],
82
82
  [`on_tap_down`][flet.DataCell.on_tap_down]) set.
83
83
  """
84
-
@@ -2,7 +2,6 @@ from dataclasses import field
2
2
  from typing import Optional, Union
3
3
 
4
4
  import flet as ft
5
-
6
5
  from flet_datatable2.datacolumn2 import DataColumn2
7
6
  from flet_datatable2.datarow2 import DataRow2
8
7
 
@@ -12,8 +11,6 @@ __all__ = ["DataTable2"]
12
11
  @ft.control("DataTable2")
13
12
  class DataTable2(ft.DataTable):
14
13
  """
15
- Extends [`flet.DataTable`][flet.DataTable].
16
-
17
14
  Provides sticky header row, scrollable data rows,
18
15
  and additional layout flexibility with [`DataColumn2`][(p).]
19
16
  and [`DataRow2`][(p).].
@@ -101,7 +98,7 @@ class DataTable2(ft.DataTable):
101
98
  Overrides theme of checkboxes in each data row.
102
99
  """
103
100
 
104
- sort_arrow_icon: ft.IconValue = ft.Icons.ARROW_UPWARD
101
+ sort_arrow_icon: ft.IconData = ft.Icons.ARROW_UPWARD
105
102
  """
106
103
  Icon shown when sorting is applied.
107
104
  """
@@ -1,24 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-datatable2
3
- Version: 0.2.0.dev505
4
- Summary: An enhanced DataTable for Flet apps.
3
+ Version: 0.70.0.dev6301
4
+ Summary: Enhanced data table widgets for Flet apps.
5
5
  Author-email: Flet contributors <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
7
- Project-URL: Homepage, https://mydomain.dev
8
- Project-URL: Documentation, https://flet-dev.github.io/flet-datatable2
9
- Project-URL: Repository, https://github.com/flet-dev/flet-datatable2
10
- Project-URL: Issues, https://github.com/flet-dev/flet-datatable2/issues
7
+ Project-URL: Homepage, https://flet.dev
8
+ Project-URL: Documentation, https://docs.flet.dev/datatable2
9
+ Project-URL: Repository, https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-datatable2
10
+ Project-URL: Issues, https://github.com/flet-dev/flet/issues
11
11
  Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
- Requires-Dist: flet>=0.70.0.dev0
14
+ Requires-Dist: flet==0.70.0.dev6301
15
15
  Dynamic: license-file
16
16
 
17
17
  # flet-datatable2
18
18
 
19
19
  [![pypi](https://img.shields.io/pypi/v/flet-datatable2.svg)](https://pypi.python.org/pypi/flet-datatable2)
20
20
  [![downloads](https://static.pepy.tech/badge/flet-datatable2/month)](https://pepy.tech/project/flet-datatable2)
21
- [![license](https://img.shields.io/github/license/flet-dev/flet-datatable2.svg)](https://github.com/flet-dev/flet-datatable2/blob/main/LICENSE)
21
+ [![license](https://img.shields.io/github/license/flet-dev/flet.svg)](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-datatable2/LICENSE)
22
22
 
23
23
  An enhanced data table for [Flet](https://flet.dev) apps that builds on the built-in component by adding sticky headers,
24
24
  fixed top rows, and fixed left columns while preserving all core features.
@@ -27,7 +27,7 @@ It is based on [data_table_2](https://pub.dev/packages/data_table_2) Flutter pac
27
27
 
28
28
  ## Documentation
29
29
 
30
- You can find its documentation [here](https://flet-dev.github.io/flet-datatable2).
30
+ You can find its documentation [here](https://docs.flet.dev/datatable2/).
31
31
 
32
32
  ## Platform Support
33
33
 
@@ -66,4 +66,4 @@ To install the `flet-datatable2` package and add it to your project dependencies
66
66
 
67
67
  ### Examples
68
68
 
69
- For examples, see [these](./examples).
69
+ For examples, see [these](https://github.com/flet-dev/flet/tree/main/examples/controls/datatable2).
@@ -0,0 +1,15 @@
1
+ flet_datatable2/__init__.py,sha256=hWWOaMnvwTFFepFbs6AAJ1fKCtM5hJ-4atBpZK4tW30,254
2
+ flet_datatable2/datacolumn2.py,sha256=gulD8tskAjCunqzOrMcRb44IofryjywsFvNpjUKZp6Y,1181
3
+ flet_datatable2/datarow2.py,sha256=lb63Gd6x9TRIcrvqgYpH4rWyg9X2JUUFuENXU6rYc8E,2726
4
+ flet_datatable2/datatable2.py,sha256=Kr9pumaGyj3-JkWCyW4DsEWKwYm8DAjkLxPlEiFCnFw,3586
5
+ flet_datatable2-0.70.0.dev6301.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
6
+ flutter/flet_datatable2/pubspec.yaml,sha256=LOOI3zi-6LGddiD-CTuigekm6Xxhuoh9F5deV9Iwd3w,347
7
+ flutter/flet_datatable2/lib/flet_datatable2.dart,sha256=apYw8E_Zc6NUr_Kee1-WUgeV59ZYdCYeQO0A0FGPcX4,148
8
+ flutter/flet_datatable2/lib/src/data_sources.dart,sha256=sUYTmguAwQUgcYVaCIAyiul4-rtdCEndSRyKubYw0Zg,15005
9
+ flutter/flet_datatable2/lib/src/datatable2.dart,sha256=wf46YlKa9Oi71a0E2bv0m2rBLwvOTcvKcUxFppZC-TQ,8683
10
+ flutter/flet_datatable2/lib/src/extension.dart,sha256=xkoDJwnWjNfxVwayoEutFOV_jdsSyc1vanfTn9yiUjM,367
11
+ flutter/flet_datatable2/lib/src/utils/datatable.dart,sha256=nunujzsk3QyQVOH-UY56y9LkVDSwxxfphxbhVUGbIQI,337
12
+ flet_datatable2-0.70.0.dev6301.dist-info/METADATA,sha256=gOHGXUdNtUJuxLQGd4FwAwy0f7P-5TYF7C_enyddrC8,2199
13
+ flet_datatable2-0.70.0.dev6301.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
14
+ flet_datatable2-0.70.0.dev6301.dist-info/top_level.txt,sha256=ayOiAgA5C3vuE20WBGkmr5PRn7Woh7s4NUMwVVWrxQQ,24
15
+ flet_datatable2-0.70.0.dev6301.dist-info/RECORD,,
@@ -1,21 +1,21 @@
1
1
  name: flet_datatable2
2
2
  description: Flet DataTable2 control
3
- repository: https://github.com/flet-dev/flet-datatable2/src/flutter/flet_datatable2
4
- version: 0.2.0
5
- homepage: https://github.com/flet-dev/flet-datatable2
3
+ version: 0.1.0
6
4
  publish_to: none
5
+
7
6
  environment:
8
7
  sdk: '>=3.3.0 <4.0.0'
9
- flutter: '>=1.17.0'
8
+ flutter: ">=1.17.0"
9
+
10
10
  dependencies:
11
- data_table_2: ^2.6.0
11
+ data_table_2: 2.6.0
12
+
12
13
  flet:
13
- git:
14
- url: https://github.com/flet-dev/flet.git
15
- path: packages/flet
16
- ref: main
14
+ path: ../../../../../../../packages/flet
15
+
17
16
  flutter:
18
17
  sdk: flutter
18
+
19
19
  dev_dependencies:
20
20
  flutter_test:
21
21
  sdk: flutter
@@ -1,19 +0,0 @@
1
- flet_datatable2/__init__.py,sha256=hWWOaMnvwTFFepFbs6AAJ1fKCtM5hJ-4atBpZK4tW30,254
2
- flet_datatable2/datacolumn2.py,sha256=gulD8tskAjCunqzOrMcRb44IofryjywsFvNpjUKZp6Y,1181
3
- flet_datatable2/datarow2.py,sha256=6P6M3q6JuFy3oJ8qaYRDK5ZQwuDHWoeo-k4i_QVNr5Q,2773
4
- flet_datatable2/datatable2.py,sha256=IinbB6cDpZ4IsmkpW25cAtOO8mN_J0iYuEUxRyqGfSA,3637
5
- flet_datatable2-0.2.0.dev505.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
6
- flutter/flet_datatable2/CHANGELOG.md,sha256=e6Zjy4gzJ4BEtHpGmHZdbyAJxOs9Q-y8c2s5W2TH6ZA,44
7
- flutter/flet_datatable2/LICENSE,sha256=Qi4N6OMnX-v1xBpcz4kfaPFrxA4bXcom5QkTswfveU4,29
8
- flutter/flet_datatable2/README.md,sha256=cJI_uMYdA7FDctTMhnkg1l6Twg_e2VjVuhtOagDXXv0,111
9
- flutter/flet_datatable2/pubspec.lock,sha256=P2GYOtmB48I077PboD6AKOe4ozFW3S6n88KA4F4yeec,23516
10
- flutter/flet_datatable2/pubspec.yaml,sha256=964qzuIDMhWn-NfG7lBowr2uDV6qBpMaxtoKw7waX3o,535
11
- flutter/flet_datatable2/lib/flet_datatable2.dart,sha256=apYw8E_Zc6NUr_Kee1-WUgeV59ZYdCYeQO0A0FGPcX4,148
12
- flutter/flet_datatable2/lib/src/data_sources.dart,sha256=sUYTmguAwQUgcYVaCIAyiul4-rtdCEndSRyKubYw0Zg,15005
13
- flutter/flet_datatable2/lib/src/datatable2.dart,sha256=wf46YlKa9Oi71a0E2bv0m2rBLwvOTcvKcUxFppZC-TQ,8683
14
- flutter/flet_datatable2/lib/src/extension.dart,sha256=xkoDJwnWjNfxVwayoEutFOV_jdsSyc1vanfTn9yiUjM,367
15
- flutter/flet_datatable2/lib/src/utils/datatable.dart,sha256=nunujzsk3QyQVOH-UY56y9LkVDSwxxfphxbhVUGbIQI,337
16
- flet_datatable2-0.2.0.dev505.dist-info/METADATA,sha256=Xgtxeqyj3DsFaymLhpiRy9z9MIbVvityl_ZDH3xLDzk,2112
17
- flet_datatable2-0.2.0.dev505.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
18
- flet_datatable2-0.2.0.dev505.dist-info/top_level.txt,sha256=ayOiAgA5C3vuE20WBGkmr5PRn7Woh7s4NUMwVVWrxQQ,24
19
- flet_datatable2-0.2.0.dev505.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- ## 0.1.0
2
-
3
- * TODO: Describe initial release.
@@ -1 +0,0 @@
1
- TODO: Add your license here.
@@ -1,6 +0,0 @@
1
- # flet-datatable2
2
- DataTable2 control for Flet
3
-
4
- Flet version: 0.27.3
5
-
6
- TODO: Add your control documentation here.
@@ -1,792 +0,0 @@
1
- # Generated by pub
2
- # See https://dart.dev/tools/pub/glossary#lockfile
3
- packages:
4
- args:
5
- dependency: transitive
6
- description:
7
- name: args
8
- sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04
9
- url: "https://pub.dev"
10
- source: hosted
11
- version: "2.7.0"
12
- async:
13
- dependency: transitive
14
- description:
15
- name: async
16
- sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
17
- url: "https://pub.dev"
18
- source: hosted
19
- version: "2.13.0"
20
- boolean_selector:
21
- dependency: transitive
22
- description:
23
- name: boolean_selector
24
- sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
25
- url: "https://pub.dev"
26
- source: hosted
27
- version: "2.1.2"
28
- characters:
29
- dependency: transitive
30
- description:
31
- name: characters
32
- sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803
33
- url: "https://pub.dev"
34
- source: hosted
35
- version: "1.4.0"
36
- clock:
37
- dependency: transitive
38
- description:
39
- name: clock
40
- sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
41
- url: "https://pub.dev"
42
- source: hosted
43
- version: "1.1.2"
44
- collection:
45
- dependency: transitive
46
- description:
47
- name: collection
48
- sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
49
- url: "https://pub.dev"
50
- source: hosted
51
- version: "1.19.1"
52
- cross_file:
53
- dependency: transitive
54
- description:
55
- name: cross_file
56
- sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670"
57
- url: "https://pub.dev"
58
- source: hosted
59
- version: "0.3.4+2"
60
- crypto:
61
- dependency: transitive
62
- description:
63
- name: crypto
64
- sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
65
- url: "https://pub.dev"
66
- source: hosted
67
- version: "3.0.6"
68
- data_table_2:
69
- dependency: "direct main"
70
- description:
71
- name: data_table_2
72
- sha256: b8dd157e4efe5f2beef092c9952a254b2192cf76a26ad1c6aa8b06c8b9d665da
73
- url: "https://pub.dev"
74
- source: hosted
75
- version: "2.6.0"
76
- dbus:
77
- dependency: transitive
78
- description:
79
- name: dbus
80
- sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
81
- url: "https://pub.dev"
82
- source: hosted
83
- version: "0.7.11"
84
- device_info_plus:
85
- dependency: transitive
86
- description:
87
- name: device_info_plus
88
- sha256: "98f28b42168cc509abc92f88518882fd58061ea372d7999aecc424345c7bff6a"
89
- url: "https://pub.dev"
90
- source: hosted
91
- version: "11.5.0"
92
- device_info_plus_platform_interface:
93
- dependency: transitive
94
- description:
95
- name: device_info_plus_platform_interface
96
- sha256: e1ea89119e34903dca74b883d0dd78eb762814f97fb6c76f35e9ff74d261a18f
97
- url: "https://pub.dev"
98
- source: hosted
99
- version: "7.0.3"
100
- equatable:
101
- dependency: transitive
102
- description:
103
- name: equatable
104
- sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7"
105
- url: "https://pub.dev"
106
- source: hosted
107
- version: "2.0.7"
108
- fake_async:
109
- dependency: transitive
110
- description:
111
- name: fake_async
112
- sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
113
- url: "https://pub.dev"
114
- source: hosted
115
- version: "1.3.3"
116
- ffi:
117
- dependency: transitive
118
- description:
119
- name: ffi
120
- sha256: "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418"
121
- url: "https://pub.dev"
122
- source: hosted
123
- version: "2.1.4"
124
- file:
125
- dependency: transitive
126
- description:
127
- name: file
128
- sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
129
- url: "https://pub.dev"
130
- source: hosted
131
- version: "7.0.1"
132
- file_picker:
133
- dependency: transitive
134
- description:
135
- name: file_picker
136
- sha256: f2d9f173c2c14635cc0e9b14c143c49ef30b4934e8d1d274d6206fcb0086a06f
137
- url: "https://pub.dev"
138
- source: hosted
139
- version: "10.3.3"
140
- flet:
141
- dependency: "direct main"
142
- description:
143
- path: "packages/flet"
144
- ref: main
145
- resolved-ref: cbdae3a51670e2a124bbe5883280302efffcb3e0
146
- url: "https://github.com/flet-dev/flet.git"
147
- source: git
148
- version: "0.70.0"
149
- flutter:
150
- dependency: "direct main"
151
- description: flutter
152
- source: sdk
153
- version: "0.0.0"
154
- flutter_highlight:
155
- dependency: transitive
156
- description:
157
- name: flutter_highlight
158
- sha256: "7b96333867aa07e122e245c033b8ad622e4e3a42a1a2372cbb098a2541d8782c"
159
- url: "https://pub.dev"
160
- source: hosted
161
- version: "0.7.0"
162
- flutter_lints:
163
- dependency: "direct dev"
164
- description:
165
- name: flutter_lints
166
- sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
167
- url: "https://pub.dev"
168
- source: hosted
169
- version: "3.0.2"
170
- flutter_localizations:
171
- dependency: transitive
172
- description: flutter
173
- source: sdk
174
- version: "0.0.0"
175
- flutter_markdown:
176
- dependency: transitive
177
- description:
178
- name: flutter_markdown
179
- sha256: e7bbc718adc9476aa14cfddc1ef048d2e21e4e8f18311aaac723266db9f9e7b5
180
- url: "https://pub.dev"
181
- source: hosted
182
- version: "0.7.6+2"
183
- flutter_plugin_android_lifecycle:
184
- dependency: transitive
185
- description:
186
- name: flutter_plugin_android_lifecycle
187
- sha256: b0694b7fb1689b0e6cc193b3f1fcac6423c4f93c74fb20b806c6b6f196db0c31
188
- url: "https://pub.dev"
189
- source: hosted
190
- version: "2.0.30"
191
- flutter_svg:
192
- dependency: transitive
193
- description:
194
- name: flutter_svg
195
- sha256: d44bf546b13025ec7353091516f6881f1d4c633993cb109c3916c3a0159dadf1
196
- url: "https://pub.dev"
197
- source: hosted
198
- version: "2.1.0"
199
- flutter_test:
200
- dependency: "direct dev"
201
- description: flutter
202
- source: sdk
203
- version: "0.0.0"
204
- flutter_web_plugins:
205
- dependency: transitive
206
- description: flutter
207
- source: sdk
208
- version: "0.0.0"
209
- highlight:
210
- dependency: transitive
211
- description:
212
- name: highlight
213
- sha256: "5353a83ffe3e3eca7df0abfb72dcf3fa66cc56b953728e7113ad4ad88497cf21"
214
- url: "https://pub.dev"
215
- source: hosted
216
- version: "0.7.0"
217
- http:
218
- dependency: transitive
219
- description:
220
- name: http
221
- sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
222
- url: "https://pub.dev"
223
- source: hosted
224
- version: "1.3.0"
225
- http_parser:
226
- dependency: transitive
227
- description:
228
- name: http_parser
229
- sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
230
- url: "https://pub.dev"
231
- source: hosted
232
- version: "4.1.2"
233
- intl:
234
- dependency: transitive
235
- description:
236
- name: intl
237
- sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
238
- url: "https://pub.dev"
239
- source: hosted
240
- version: "0.20.2"
241
- json_annotation:
242
- dependency: transitive
243
- description:
244
- name: json_annotation
245
- sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
246
- url: "https://pub.dev"
247
- source: hosted
248
- version: "4.9.0"
249
- leak_tracker:
250
- dependency: transitive
251
- description:
252
- name: leak_tracker
253
- sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
254
- url: "https://pub.dev"
255
- source: hosted
256
- version: "11.0.2"
257
- leak_tracker_flutter_testing:
258
- dependency: transitive
259
- description:
260
- name: leak_tracker_flutter_testing
261
- sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
262
- url: "https://pub.dev"
263
- source: hosted
264
- version: "3.0.10"
265
- leak_tracker_testing:
266
- dependency: transitive
267
- description:
268
- name: leak_tracker_testing
269
- sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
270
- url: "https://pub.dev"
271
- source: hosted
272
- version: "3.0.2"
273
- lints:
274
- dependency: transitive
275
- description:
276
- name: lints
277
- sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
278
- url: "https://pub.dev"
279
- source: hosted
280
- version: "3.0.0"
281
- logging:
282
- dependency: transitive
283
- description:
284
- name: logging
285
- sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
286
- url: "https://pub.dev"
287
- source: hosted
288
- version: "1.3.0"
289
- markdown:
290
- dependency: transitive
291
- description:
292
- name: markdown
293
- sha256: "935e23e1ff3bc02d390bad4d4be001208ee92cc217cb5b5a6c19bc14aaa318c1"
294
- url: "https://pub.dev"
295
- source: hosted
296
- version: "7.3.0"
297
- matcher:
298
- dependency: transitive
299
- description:
300
- name: matcher
301
- sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
302
- url: "https://pub.dev"
303
- source: hosted
304
- version: "0.12.17"
305
- material_color_utilities:
306
- dependency: transitive
307
- description:
308
- name: material_color_utilities
309
- sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
310
- url: "https://pub.dev"
311
- source: hosted
312
- version: "0.11.1"
313
- meta:
314
- dependency: transitive
315
- description:
316
- name: meta
317
- sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
318
- url: "https://pub.dev"
319
- source: hosted
320
- version: "1.16.0"
321
- msgpack_dart:
322
- dependency: transitive
323
- description:
324
- name: msgpack_dart
325
- sha256: c2d235ed01f364719b5296aecf43ac330f0d7bc865fa134d0d7910a40454dffb
326
- url: "https://pub.dev"
327
- source: hosted
328
- version: "1.0.1"
329
- nested:
330
- dependency: transitive
331
- description:
332
- name: nested
333
- sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
334
- url: "https://pub.dev"
335
- source: hosted
336
- version: "1.0.0"
337
- path:
338
- dependency: transitive
339
- description:
340
- name: path
341
- sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
342
- url: "https://pub.dev"
343
- source: hosted
344
- version: "1.9.1"
345
- path_parsing:
346
- dependency: transitive
347
- description:
348
- name: path_parsing
349
- sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca"
350
- url: "https://pub.dev"
351
- source: hosted
352
- version: "1.1.0"
353
- path_provider:
354
- dependency: transitive
355
- description:
356
- name: path_provider
357
- sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
358
- url: "https://pub.dev"
359
- source: hosted
360
- version: "2.1.5"
361
- path_provider_android:
362
- dependency: transitive
363
- description:
364
- name: path_provider_android
365
- sha256: "993381400e94d18469750e5b9dcb8206f15bc09f9da86b9e44a9b0092a0066db"
366
- url: "https://pub.dev"
367
- source: hosted
368
- version: "2.2.18"
369
- path_provider_foundation:
370
- dependency: transitive
371
- description:
372
- name: path_provider_foundation
373
- sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
374
- url: "https://pub.dev"
375
- source: hosted
376
- version: "2.4.2"
377
- path_provider_linux:
378
- dependency: transitive
379
- description:
380
- name: path_provider_linux
381
- sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
382
- url: "https://pub.dev"
383
- source: hosted
384
- version: "2.2.1"
385
- path_provider_platform_interface:
386
- dependency: transitive
387
- description:
388
- name: path_provider_platform_interface
389
- sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
390
- url: "https://pub.dev"
391
- source: hosted
392
- version: "2.1.2"
393
- path_provider_windows:
394
- dependency: transitive
395
- description:
396
- name: path_provider_windows
397
- sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
398
- url: "https://pub.dev"
399
- source: hosted
400
- version: "2.3.0"
401
- petitparser:
402
- dependency: transitive
403
- description:
404
- name: petitparser
405
- sha256: "1a97266a94f7350d30ae522c0af07890c70b8e62c71e8e3920d1db4d23c057d1"
406
- url: "https://pub.dev"
407
- source: hosted
408
- version: "7.0.1"
409
- platform:
410
- dependency: transitive
411
- description:
412
- name: platform
413
- sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
414
- url: "https://pub.dev"
415
- source: hosted
416
- version: "3.1.6"
417
- plugin_platform_interface:
418
- dependency: transitive
419
- description:
420
- name: plugin_platform_interface
421
- sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
422
- url: "https://pub.dev"
423
- source: hosted
424
- version: "2.1.8"
425
- provider:
426
- dependency: transitive
427
- description:
428
- name: provider
429
- sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
430
- url: "https://pub.dev"
431
- source: hosted
432
- version: "6.1.5+1"
433
- screen_retriever:
434
- dependency: transitive
435
- description:
436
- name: screen_retriever
437
- sha256: "570dbc8e4f70bac451e0efc9c9bb19fa2d6799a11e6ef04f946d7886d2e23d0c"
438
- url: "https://pub.dev"
439
- source: hosted
440
- version: "0.2.0"
441
- screen_retriever_linux:
442
- dependency: transitive
443
- description:
444
- name: screen_retriever_linux
445
- sha256: f7f8120c92ef0784e58491ab664d01efda79a922b025ff286e29aa123ea3dd18
446
- url: "https://pub.dev"
447
- source: hosted
448
- version: "0.2.0"
449
- screen_retriever_macos:
450
- dependency: transitive
451
- description:
452
- name: screen_retriever_macos
453
- sha256: "71f956e65c97315dd661d71f828708bd97b6d358e776f1a30d5aa7d22d78a149"
454
- url: "https://pub.dev"
455
- source: hosted
456
- version: "0.2.0"
457
- screen_retriever_platform_interface:
458
- dependency: transitive
459
- description:
460
- name: screen_retriever_platform_interface
461
- sha256: ee197f4581ff0d5608587819af40490748e1e39e648d7680ecf95c05197240c0
462
- url: "https://pub.dev"
463
- source: hosted
464
- version: "0.2.0"
465
- screen_retriever_windows:
466
- dependency: transitive
467
- description:
468
- name: screen_retriever_windows
469
- sha256: "449ee257f03ca98a57288ee526a301a430a344a161f9202b4fcc38576716fe13"
470
- url: "https://pub.dev"
471
- source: hosted
472
- version: "0.2.0"
473
- screenshot:
474
- dependency: transitive
475
- description:
476
- name: screenshot
477
- sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
478
- url: "https://pub.dev"
479
- source: hosted
480
- version: "3.0.0"
481
- sensors_plus:
482
- dependency: transitive
483
- description:
484
- name: sensors_plus
485
- sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
486
- url: "https://pub.dev"
487
- source: hosted
488
- version: "6.1.2"
489
- sensors_plus_platform_interface:
490
- dependency: transitive
491
- description:
492
- name: sensors_plus_platform_interface
493
- sha256: "58815d2f5e46c0c41c40fb39375d3f127306f7742efe3b891c0b1c87e2b5cd5d"
494
- url: "https://pub.dev"
495
- source: hosted
496
- version: "2.0.1"
497
- shared_preferences:
498
- dependency: transitive
499
- description:
500
- name: shared_preferences
501
- sha256: "846849e3e9b68f3ef4b60c60cf4b3e02e9321bc7f4d8c4692cf87ffa82fc8a3a"
502
- url: "https://pub.dev"
503
- source: hosted
504
- version: "2.5.2"
505
- shared_preferences_android:
506
- dependency: transitive
507
- description:
508
- name: shared_preferences_android
509
- sha256: a2608114b1ffdcbc9c120eb71a0e207c71da56202852d4aab8a5e30a82269e74
510
- url: "https://pub.dev"
511
- source: hosted
512
- version: "2.4.12"
513
- shared_preferences_foundation:
514
- dependency: transitive
515
- description:
516
- name: shared_preferences_foundation
517
- sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
518
- url: "https://pub.dev"
519
- source: hosted
520
- version: "2.5.4"
521
- shared_preferences_linux:
522
- dependency: transitive
523
- description:
524
- name: shared_preferences_linux
525
- sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
526
- url: "https://pub.dev"
527
- source: hosted
528
- version: "2.4.1"
529
- shared_preferences_platform_interface:
530
- dependency: transitive
531
- description:
532
- name: shared_preferences_platform_interface
533
- sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
534
- url: "https://pub.dev"
535
- source: hosted
536
- version: "2.4.1"
537
- shared_preferences_web:
538
- dependency: transitive
539
- description:
540
- name: shared_preferences_web
541
- sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019
542
- url: "https://pub.dev"
543
- source: hosted
544
- version: "2.4.3"
545
- shared_preferences_windows:
546
- dependency: transitive
547
- description:
548
- name: shared_preferences_windows
549
- sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
550
- url: "https://pub.dev"
551
- source: hosted
552
- version: "2.4.1"
553
- sky_engine:
554
- dependency: transitive
555
- description: flutter
556
- source: sdk
557
- version: "0.0.0"
558
- source_span:
559
- dependency: transitive
560
- description:
561
- name: source_span
562
- sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
563
- url: "https://pub.dev"
564
- source: hosted
565
- version: "1.10.1"
566
- stack_trace:
567
- dependency: transitive
568
- description:
569
- name: stack_trace
570
- sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
571
- url: "https://pub.dev"
572
- source: hosted
573
- version: "1.12.1"
574
- stream_channel:
575
- dependency: transitive
576
- description:
577
- name: stream_channel
578
- sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
579
- url: "https://pub.dev"
580
- source: hosted
581
- version: "2.1.4"
582
- string_scanner:
583
- dependency: transitive
584
- description:
585
- name: string_scanner
586
- sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
587
- url: "https://pub.dev"
588
- source: hosted
589
- version: "1.4.1"
590
- term_glyph:
591
- dependency: transitive
592
- description:
593
- name: term_glyph
594
- sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
595
- url: "https://pub.dev"
596
- source: hosted
597
- version: "1.2.2"
598
- test_api:
599
- dependency: transitive
600
- description:
601
- name: test_api
602
- sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
603
- url: "https://pub.dev"
604
- source: hosted
605
- version: "0.7.6"
606
- typed_data:
607
- dependency: transitive
608
- description:
609
- name: typed_data
610
- sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
611
- url: "https://pub.dev"
612
- source: hosted
613
- version: "1.4.0"
614
- url_launcher:
615
- dependency: transitive
616
- description:
617
- name: url_launcher
618
- sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603"
619
- url: "https://pub.dev"
620
- source: hosted
621
- version: "6.3.1"
622
- url_launcher_android:
623
- dependency: transitive
624
- description:
625
- name: url_launcher_android
626
- sha256: "199bc33e746088546a39cc5f36bac5a278c5e53b40cb3196f99e7345fdcfae6b"
627
- url: "https://pub.dev"
628
- source: hosted
629
- version: "6.3.22"
630
- url_launcher_ios:
631
- dependency: transitive
632
- description:
633
- name: url_launcher_ios
634
- sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
635
- url: "https://pub.dev"
636
- source: hosted
637
- version: "6.3.4"
638
- url_launcher_linux:
639
- dependency: transitive
640
- description:
641
- name: url_launcher_linux
642
- sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935"
643
- url: "https://pub.dev"
644
- source: hosted
645
- version: "3.2.1"
646
- url_launcher_macos:
647
- dependency: transitive
648
- description:
649
- name: url_launcher_macos
650
- sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
651
- url: "https://pub.dev"
652
- source: hosted
653
- version: "3.2.3"
654
- url_launcher_platform_interface:
655
- dependency: transitive
656
- description:
657
- name: url_launcher_platform_interface
658
- sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029"
659
- url: "https://pub.dev"
660
- source: hosted
661
- version: "2.3.2"
662
- url_launcher_web:
663
- dependency: transitive
664
- description:
665
- name: url_launcher_web
666
- sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2"
667
- url: "https://pub.dev"
668
- source: hosted
669
- version: "2.4.1"
670
- url_launcher_windows:
671
- dependency: transitive
672
- description:
673
- name: url_launcher_windows
674
- sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77"
675
- url: "https://pub.dev"
676
- source: hosted
677
- version: "3.1.4"
678
- vector_graphics:
679
- dependency: transitive
680
- description:
681
- name: vector_graphics
682
- sha256: a4f059dc26fc8295b5921376600a194c4ec7d55e72f2fe4c7d2831e103d461e6
683
- url: "https://pub.dev"
684
- source: hosted
685
- version: "1.1.19"
686
- vector_graphics_codec:
687
- dependency: transitive
688
- description:
689
- name: vector_graphics_codec
690
- sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146"
691
- url: "https://pub.dev"
692
- source: hosted
693
- version: "1.1.13"
694
- vector_graphics_compiler:
695
- dependency: transitive
696
- description:
697
- name: vector_graphics_compiler
698
- sha256: d354a7ec6931e6047785f4db12a1f61ec3d43b207fc0790f863818543f8ff0dc
699
- url: "https://pub.dev"
700
- source: hosted
701
- version: "1.1.19"
702
- vector_math:
703
- dependency: transitive
704
- description:
705
- name: vector_math
706
- sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
707
- url: "https://pub.dev"
708
- source: hosted
709
- version: "2.2.0"
710
- vm_service:
711
- dependency: transitive
712
- description:
713
- name: vm_service
714
- sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
715
- url: "https://pub.dev"
716
- source: hosted
717
- version: "15.0.2"
718
- web:
719
- dependency: transitive
720
- description:
721
- name: web
722
- sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
723
- url: "https://pub.dev"
724
- source: hosted
725
- version: "1.1.1"
726
- web_socket:
727
- dependency: transitive
728
- description:
729
- name: web_socket
730
- sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
731
- url: "https://pub.dev"
732
- source: hosted
733
- version: "1.0.1"
734
- web_socket_channel:
735
- dependency: transitive
736
- description:
737
- name: web_socket_channel
738
- sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
739
- url: "https://pub.dev"
740
- source: hosted
741
- version: "3.0.3"
742
- win32:
743
- dependency: transitive
744
- description:
745
- name: win32
746
- sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
747
- url: "https://pub.dev"
748
- source: hosted
749
- version: "5.14.0"
750
- win32_registry:
751
- dependency: transitive
752
- description:
753
- name: win32_registry
754
- sha256: "6f1b564492d0147b330dd794fee8f512cec4977957f310f9951b5f9d83618dae"
755
- url: "https://pub.dev"
756
- source: hosted
757
- version: "2.1.0"
758
- window_manager:
759
- dependency: transitive
760
- description:
761
- name: window_manager
762
- sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd"
763
- url: "https://pub.dev"
764
- source: hosted
765
- version: "0.5.1"
766
- window_to_front:
767
- dependency: transitive
768
- description:
769
- name: window_to_front
770
- sha256: "7aef379752b7190c10479e12b5fd7c0b9d92adc96817d9e96c59937929512aee"
771
- url: "https://pub.dev"
772
- source: hosted
773
- version: "0.0.3"
774
- xdg_directories:
775
- dependency: transitive
776
- description:
777
- name: xdg_directories
778
- sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
779
- url: "https://pub.dev"
780
- source: hosted
781
- version: "1.1.0"
782
- xml:
783
- dependency: transitive
784
- description:
785
- name: xml
786
- sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025"
787
- url: "https://pub.dev"
788
- source: hosted
789
- version: "6.6.1"
790
- sdks:
791
- dart: ">=3.9.0 <4.0.0"
792
- flutter: ">=3.35.0"