@@ -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