Skip to content

Commit e51fc28

Browse files
committed
Formatting
1 parent 33edf8b commit e51fc28

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

example/lib/draw_on_map_example_page.dart

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,10 @@ class _DrawOnMapExamplePageState extends State<DrawOnMapExamplePage> {
144144
Widget build(BuildContext context) {
145145
return Scaffold(
146146
key: _scaffoldKey,
147-
floatingActionButton: FloatingActionButton(onPressed: _showBottomSheet,child: Icon(Icons.draw),),
147+
floatingActionButton: FloatingActionButton(
148+
onPressed: _showBottomSheet,
149+
child: Icon(Icons.draw),
150+
),
148151
body: Stack(
149152
children: [
150153
ArcgisMap(
@@ -583,7 +586,10 @@ class _DrawOnMapExamplePageState extends State<DrawOnMapExamplePage> {
583586
Navigator.pop(context);
584587
onPressed();
585588
},
586-
title: Text(text,style: TextStyle(color: Colors.deepPurple),),
589+
title: Text(
590+
text,
591+
style: TextStyle(color: Colors.deepPurple),
592+
),
587593
);
588594
}
589595
}

0 commit comments

Comments
 (0)