Skip to content

Commit 78b0b26

Browse files
committed
4.0.0(673)
1 parent fce8df7 commit 78b0b26

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

lib/page/see.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ class PageSee extends ConsumerWidget {
2323
return Scaffold(
2424
body: Stack(
2525
children: [
26-
_List(),
27-
_Empty(),
28-
Positioned(
26+
const _List(),
27+
const _Empty(),
28+
const Positioned(
2929
top: 0,
3030
left: 0,
3131
right: 0,
@@ -35,9 +35,9 @@ class PageSee extends ConsumerWidget {
3535
bottom: inputHeight,
3636
right: 0,
3737
left: 0,
38-
child: FloatingSuggestions(),
38+
child: const FloatingSuggestions(),
3939
),
40-
InputBar(preferredDemoType: .see),
40+
const InputBar(preferredDemoType: .see),
4141
],
4242
),
4343
);

lib/widgets/model_item.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ class ModelItem extends ConsumerWidget {
296296
child: Text(
297297
S.current.model_item_ios18_weight_hint,
298298
textAlign: TextAlign.center,
299-
style: TS(c: kCY, s: 13, w: .w600, height: 1.3),
299+
style: const TS(c: kCY, s: 13, w: .w600, height: 1.3),
300300
),
301301
),
302302
),

lib/widgets/talk/tts_bottom_interactions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ class _Actions extends ConsumerWidget {
322322

323323
@override
324324
Widget build(BuildContext context, WidgetRef ref) {
325-
return Wrap(
325+
return const Wrap(
326326
crossAxisAlignment: .center,
327327
children: [
328328
_AudioButton(),

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: zone
22
description: "An app to show RWKV model in mobile app. Developed with Flutter."
33
publish_to: "none"
4-
version: 4.0.0+672
4+
version: 4.0.0+673
55

66
environment:
77
sdk: ^3.10.0

0 commit comments

Comments
 (0)