Skip to content

Commit 2215dd9

Browse files
authored
Use YaruCircularProgressIndicator (#326)
* Use YaruCircularProgressIndicator * Require yaru_widget 1.0.11
1 parent 5967337 commit 2215dd9

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

lib/view/pages/bluetooth/bluetooth_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class _BluetoothPageState extends State<BluetoothPage> {
6868
? const SizedBox(
6969
width: 10,
7070
height: 10,
71-
child: CircularProgressIndicator(
71+
child: YaruCircularProgressIndicator(
7272
strokeWidth: 2,
7373
))
7474
: const SizedBox(),

lib/view/pages/keyboard/input_source_selection_section.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class InputSourceSelectionSection extends StatelessWidget {
1818
future: model.getInputSources(),
1919
builder: (context, snapshot) {
2020
if (!snapshot.hasData) {
21-
return const CircularProgressIndicator();
21+
return const YaruCircularProgressIndicator();
2222
}
2323
return YaruSection(
2424
width: kDefaultWidth,

lib/view/pages/wallpaper/wallpaper_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class WallpaperPage extends StatelessWidget {
159159
data: snapshot.data!, customizableGrid: false);
160160
} else {
161161
return const Center(
162-
child: CircularProgressIndicator(),
162+
child: YaruCircularProgressIndicator(),
163163
);
164164
}
165165
}),

pubspec.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ packages:
3535
name: async
3636
url: "https://pub.dartlang.org"
3737
source: hosted
38-
version: "2.8.2"
38+
version: "2.9.0"
3939
barcode:
4040
dependency: transitive
4141
description:
@@ -119,7 +119,7 @@ packages:
119119
name: characters
120120
url: "https://pub.dartlang.org"
121121
source: hosted
122-
version: "1.2.0"
122+
version: "1.2.1"
123123
charcode:
124124
dependency: transitive
125125
description:
@@ -161,7 +161,7 @@ packages:
161161
name: collection
162162
url: "https://pub.dartlang.org"
163163
source: hosted
164-
version: "1.15.0"
164+
version: "1.16.0"
165165
convert:
166166
dependency: transitive
167167
description:
@@ -231,7 +231,7 @@ packages:
231231
name: fake_async
232232
url: "https://pub.dartlang.org"
233233
source: hosted
234-
version: "1.2.0"
234+
version: "1.3.0"
235235
ffi:
236236
dependency: transitive
237237
description:
@@ -440,7 +440,7 @@ packages:
440440
name: js
441441
url: "https://pub.dartlang.org"
442442
source: hosted
443-
version: "0.6.3"
443+
version: "0.6.4"
444444
json_annotation:
445445
dependency: transitive
446446
description:
@@ -484,7 +484,7 @@ packages:
484484
name: material_color_utilities
485485
url: "https://pub.dartlang.org"
486486
source: hosted
487-
version: "0.1.3"
487+
version: "0.1.4"
488488
meta:
489489
dependency: transitive
490490
description:
@@ -561,7 +561,7 @@ packages:
561561
name: path
562562
url: "https://pub.dartlang.org"
563563
source: hosted
564-
version: "1.8.0"
564+
version: "1.8.1"
565565
path_drawing:
566566
dependency: transitive
567567
description:
@@ -769,7 +769,7 @@ packages:
769769
name: source_span
770770
url: "https://pub.dartlang.org"
771771
source: hosted
772-
version: "1.8.1"
772+
version: "1.9.0"
773773
stack_trace:
774774
dependency: transitive
775775
description:
@@ -797,7 +797,7 @@ packages:
797797
name: string_scanner
798798
url: "https://pub.dartlang.org"
799799
source: hosted
800-
version: "1.1.0"
800+
version: "1.1.1"
801801
term_glyph:
802802
dependency: transitive
803803
description:
@@ -811,21 +811,21 @@ packages:
811811
name: test
812812
url: "https://pub.dartlang.org"
813813
source: hosted
814-
version: "1.19.5"
814+
version: "1.20.2"
815815
test_api:
816816
dependency: transitive
817817
description:
818818
name: test_api
819819
url: "https://pub.dartlang.org"
820820
source: hosted
821-
version: "0.4.8"
821+
version: "0.4.9"
822822
test_core:
823823
dependency: transitive
824824
description:
825825
name: test_core
826826
url: "https://pub.dartlang.org"
827827
source: hosted
828-
version: "0.4.9"
828+
version: "0.4.11"
829829
timing:
830830
dependency: transitive
831831
description:
@@ -909,7 +909,7 @@ packages:
909909
name: url_launcher_web
910910
url: "https://pub.dartlang.org"
911911
source: hosted
912-
version: "2.0.9"
912+
version: "2.0.6"
913913
url_launcher_windows:
914914
dependency: transitive
915915
description:
@@ -923,7 +923,7 @@ packages:
923923
name: vector_math
924924
url: "https://pub.dartlang.org"
925925
source: hosted
926-
version: "2.1.1"
926+
version: "2.1.2"
927927
vm_service:
928928
dependency: transitive
929929
description:
@@ -1014,7 +1014,7 @@ packages:
10141014
name: yaru_widgets
10151015
url: "https://pub.dartlang.org"
10161016
source: hosted
1017-
version: "1.0.8"
1017+
version: "1.0.11"
10181018
sdks:
1019-
dart: ">=2.16.0 <3.0.0"
1020-
flutter: ">=2.10.0"
1019+
dart: ">=2.17.0 <3.0.0"
1020+
flutter: ">=3.0.0"

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies:
4545
xml: ^5.3.1
4646
yaru: ^0.3.0
4747
yaru_icons: ^0.2.1
48-
yaru_widgets: ^1.0.8
48+
yaru_widgets: ^1.0.11
4949

5050
dev_dependencies:
5151
build_runner: ^2.1.2

0 commit comments

Comments
 (0)