Skip to content

Commit 96e6c99

Browse files
committed
Merge branch 'develop'
2 parents fb44c41 + bbaa99a commit 96e6c99

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

demo/lib/screen/feature/listing_mode_screen.dart

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -181,12 +181,10 @@ class _ListingModeScreenState extends State<ListingModeScreen> {
181181
autofocus: true,
182182
),
183183
const SizedBox(height: 20),
184-
...row!.cells.entries
185-
.map((e) => Padding(
186-
padding: const EdgeInsets.all(8.0),
187-
child: Text(e.value.value.toString()),
188-
))
189-
,
184+
...row!.cells.entries.map((e) => Padding(
185+
padding: const EdgeInsets.all(8.0),
186+
child: Text(e.value.value.toString()),
187+
)),
190188
const SizedBox(height: 20),
191189
Center(
192190
child: Wrap(

demo/lib/widget/pluto_docs_button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class PlutoDocsButton extends StatelessWidget {
99
PlutoDocsButton({
1010
super.key,
1111
required this.url,
12-
}) : assert(url.isNotEmpty);
12+
}) : assert(url.isNotEmpty);
1313

1414
@override
1515
Widget build(BuildContext context) {

demo/lib/widget/pluto_example_button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class PlutoExampleButton extends StatelessWidget {
99
PlutoExampleButton({
1010
super.key,
1111
required this.url,
12-
}) : assert(url.isNotEmpty);
12+
}) : assert(url.isNotEmpty);
1313

1414
@override
1515
Widget build(BuildContext context) {

demo/lib/widget/pluto_expansion_tile.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class PlutoExpansionTile extends StatelessWidget {
1212
required this.title,
1313
this.children,
1414
this.buttons,
15-
}) : assert(title.isNotEmpty);
15+
}) : assert(title.isNotEmpty);
1616

1717
@override
1818
Widget build(BuildContext context) {

0 commit comments

Comments
 (0)