Skip to content

Commit 1010eb5

Browse files
committed
add screenshot for pub.dev
1 parent 4dba2ff commit 1010eb5

File tree

7 files changed

+81
-53
lines changed

7 files changed

+81
-53
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.1.2
2+
- Add screenshot to pub.dev
3+
14
## 0.1.1
25
- Fix number display on lower sizes
36

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ There is no special setup required, just add the dependency in `pubspec.yaml`, i
1414

1515
Add the dependency in `pubspec.yaml`
1616
```yaml
17-
digital_lcd_number: ^0.1.1 # Note: use latest version
17+
digital_lcd_number: ^0.1.2 # Note: use latest version
1818
```
1919
2020
Import the widget into dart file

example/lib/main.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ class DigitalLcdDisplayExample extends StatelessWidget {
5151
),
5252
),
5353
// With row Sized Box (height is fixed and width is infinite)
54-
Row(
55-
children: const [
54+
const Row(
55+
children: [
5656
SizedBox(
5757
height: 200,
5858
child: Padding(
@@ -72,10 +72,10 @@ class DigitalLcdDisplayExample extends StatelessWidget {
7272
),
7373
),
7474
// With row and column (height and width are infinite)
75-
Row(
75+
const Row(
7676
children: [
7777
Column(
78-
children: const [
78+
children: [
7979
Padding(
8080
padding: EdgeInsets.all(8.0),
8181
child: DigitalLcdNumber(

example/pubspec.lock

+65-45
Original file line numberDiff line numberDiff line change
@@ -5,58 +5,57 @@ packages:
55
dependency: transitive
66
description:
77
name: async
8-
url: "https://pub.dartlang.org"
8+
sha256: bfe67ef28df125b7dddcea62755991f807aa39a2492a23e1550161692950bbe0
9+
url: "https://pub.dev"
910
source: hosted
10-
version: "2.8.2"
11+
version: "2.10.0"
1112
boolean_selector:
1213
dependency: transitive
1314
description:
1415
name: boolean_selector
15-
url: "https://pub.dartlang.org"
16+
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
17+
url: "https://pub.dev"
1618
source: hosted
17-
version: "2.1.0"
19+
version: "2.1.1"
1820
characters:
1921
dependency: transitive
2022
description:
2123
name: characters
22-
url: "https://pub.dartlang.org"
24+
sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c
25+
url: "https://pub.dev"
2326
source: hosted
24-
version: "1.2.0"
25-
charcode:
26-
dependency: transitive
27-
description:
28-
name: charcode
29-
url: "https://pub.dartlang.org"
30-
source: hosted
31-
version: "1.3.1"
27+
version: "1.2.1"
3228
clock:
3329
dependency: transitive
3430
description:
3531
name: clock
36-
url: "https://pub.dartlang.org"
32+
sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
33+
url: "https://pub.dev"
3734
source: hosted
38-
version: "1.1.0"
35+
version: "1.1.1"
3936
collection:
4037
dependency: transitive
4138
description:
4239
name: collection
43-
url: "https://pub.dartlang.org"
40+
sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c"
41+
url: "https://pub.dev"
4442
source: hosted
45-
version: "1.16.0"
43+
version: "1.17.1"
4644
digital_lcd_number:
4745
dependency: "direct main"
4846
description:
4947
path: ".."
5048
relative: true
5149
source: path
52-
version: "0.0.1"
50+
version: "0.1.2"
5351
fake_async:
5452
dependency: transitive
5553
description:
5654
name: fake_async
57-
url: "https://pub.dartlang.org"
55+
sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
56+
url: "https://pub.dev"
5857
source: hosted
59-
version: "1.3.0"
58+
version: "1.3.1"
6059
flutter:
6160
dependency: "direct main"
6261
description: flutter
@@ -66,49 +65,63 @@ packages:
6665
dependency: "direct dev"
6766
description:
6867
name: flutter_lints
69-
url: "https://pub.dartlang.org"
68+
sha256: aeb0b80a8b3709709c9cc496cdc027c5b3216796bc0af0ce1007eaf24464fd4c
69+
url: "https://pub.dev"
7070
source: hosted
7171
version: "2.0.1"
7272
flutter_test:
7373
dependency: "direct dev"
7474
description: flutter
7575
source: sdk
7676
version: "0.0.0"
77+
js:
78+
dependency: transitive
79+
description:
80+
name: js
81+
sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
82+
url: "https://pub.dev"
83+
source: hosted
84+
version: "0.6.7"
7785
lints:
7886
dependency: transitive
7987
description:
8088
name: lints
81-
url: "https://pub.dartlang.org"
89+
sha256: "5cfd6509652ff5e7fe149b6df4859e687fca9048437857cb2e65c8d780f396e3"
90+
url: "https://pub.dev"
8291
source: hosted
8392
version: "2.0.0"
8493
matcher:
8594
dependency: transitive
8695
description:
8796
name: matcher
88-
url: "https://pub.dartlang.org"
97+
sha256: c94db23593b89766cda57aab9ac311e3616cf87c6fa4e9749df032f66f30dcb8
98+
url: "https://pub.dev"
8999
source: hosted
90-
version: "0.12.11"
100+
version: "0.12.14"
91101
material_color_utilities:
92102
dependency: transitive
93103
description:
94104
name: material_color_utilities
95-
url: "https://pub.dartlang.org"
105+
sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
106+
url: "https://pub.dev"
96107
source: hosted
97-
version: "0.1.4"
108+
version: "0.2.0"
98109
meta:
99110
dependency: transitive
100111
description:
101112
name: meta
102-
url: "https://pub.dartlang.org"
113+
sha256: "12307e7f0605ce3da64cf0db90e5fcab0869f3ca03f76be6bb2991ce0a55e82b"
114+
url: "https://pub.dev"
103115
source: hosted
104-
version: "1.7.0"
116+
version: "1.9.0"
105117
path:
106118
dependency: transitive
107119
description:
108120
name: path
109-
url: "https://pub.dartlang.org"
121+
sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
122+
url: "https://pub.dev"
110123
source: hosted
111-
version: "1.8.1"
124+
version: "1.8.3"
112125
sky_engine:
113126
dependency: transitive
114127
description: flutter
@@ -118,51 +131,58 @@ packages:
118131
dependency: transitive
119132
description:
120133
name: source_span
121-
url: "https://pub.dartlang.org"
134+
sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
135+
url: "https://pub.dev"
122136
source: hosted
123-
version: "1.8.2"
137+
version: "1.9.1"
124138
stack_trace:
125139
dependency: transitive
126140
description:
127141
name: stack_trace
128-
url: "https://pub.dartlang.org"
142+
sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
143+
url: "https://pub.dev"
129144
source: hosted
130-
version: "1.10.0"
145+
version: "1.11.0"
131146
stream_channel:
132147
dependency: transitive
133148
description:
134149
name: stream_channel
135-
url: "https://pub.dartlang.org"
150+
sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
151+
url: "https://pub.dev"
136152
source: hosted
137-
version: "2.1.0"
153+
version: "2.1.1"
138154
string_scanner:
139155
dependency: transitive
140156
description:
141157
name: string_scanner
142-
url: "https://pub.dartlang.org"
158+
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
159+
url: "https://pub.dev"
143160
source: hosted
144-
version: "1.1.0"
161+
version: "1.2.0"
145162
term_glyph:
146163
dependency: transitive
147164
description:
148165
name: term_glyph
149-
url: "https://pub.dartlang.org"
166+
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
167+
url: "https://pub.dev"
150168
source: hosted
151-
version: "1.2.0"
169+
version: "1.2.1"
152170
test_api:
153171
dependency: transitive
154172
description:
155173
name: test_api
156-
url: "https://pub.dartlang.org"
174+
sha256: "6182294da5abf431177fccc1ee02401f6df30f766bc6130a0852c6b6d7ee6b2d"
175+
url: "https://pub.dev"
157176
source: hosted
158-
version: "0.4.9"
177+
version: "0.4.18"
159178
vector_math:
160179
dependency: transitive
161180
description:
162181
name: vector_math
163-
url: "https://pub.dartlang.org"
182+
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
183+
url: "https://pub.dev"
164184
source: hosted
165-
version: "2.1.2"
185+
version: "2.1.4"
166186
sdks:
167-
dart: ">=2.17.5 <3.0.0"
187+
dart: ">=2.19.0 <4.0.0"
168188
flutter: ">=1.17.0"

example/screenshots/all_digits.png

1.66 MB
Loading

example/test/widget_test.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
import 'package:flutter/material.dart';
99
import 'package:flutter_test/flutter_test.dart';
1010

11-
import 'package:example/main.dart';
11+
// ignore: avoid_relative_lib_imports
12+
import '../lib/main.dart';
1213

1314
void main() {
1415
testWidgets('Counter increments smoke test', (WidgetTester tester) async {

pubspec.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
name: digital_lcd_number
22
description: An automatic sizer digital single-digit number with LCD style widget.
3-
version: 0.1.1
3+
version: 0.1.2
44
# homepage:
55
repository: https://github.com/immadisairaj/digital_lcd_number
66

7+
screenshots:
8+
- description: 'All Digits in LCD style red color.'
9+
path: example/screenshots/all_digits.png
10+
711
environment:
8-
sdk: ">=2.17.5 <3.0.0"
12+
sdk: ">=2.17.5 <4.0.0"
913
flutter: ">=1.17.0"
1014

1115
dependencies:

0 commit comments

Comments
 (0)