Skip to content

Commit 4922497

Browse files
committed
Add comma for better formatting
1 parent e8cdf85 commit 4922497

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

lib/draggable_home.dart

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -310,19 +310,20 @@ class _DraggableHomeState extends State<DraggableHome> {
310310

311311
StreamBuilder<bool> expandedUpArrow() {
312312
return StreamBuilder<bool>(
313-
stream: isFullyExpanded.stream,
314-
builder: (context, snapshot) {
315-
return AnimatedContainer(
316-
duration: Duration(milliseconds: 500),
317-
height: (snapshot.data ?? false) ? 25 : 0,
318-
width: MediaQuery.of(context).size.width,
319-
child: Center(
320-
child: Icon(
321-
Icons.keyboard_arrow_up_rounded,
322-
color: (snapshot.data ?? false) ? null : Colors.transparent,
323-
),
313+
stream: isFullyExpanded.stream,
314+
builder: (context, snapshot) {
315+
return AnimatedContainer(
316+
duration: Duration(milliseconds: 500),
317+
height: (snapshot.data ?? false) ? 25 : 0,
318+
width: MediaQuery.of(context).size.width,
319+
child: Center(
320+
child: Icon(
321+
Icons.keyboard_arrow_up_rounded,
322+
color: (snapshot.data ?? false) ? null : Colors.transparent,
324323
),
325-
);
326-
});
324+
),
325+
);
326+
},
327+
);
327328
}
328329
}

0 commit comments

Comments
 (0)