File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 11import 'package:flutter/material.dart' ;
2+ import 'package:flutter/widgets.dart' ;
23import 'package:getflutter/getflutter.dart' ;
34
45final List <String > imageList = [
@@ -176,7 +177,6 @@ class _MyHomePageState extends State<MyHomePage>
176177// Container(color: Colors.blue)
177178// ]),
178179
179-
180180 SingleChildScrollView (
181181 child: Column (
182182 mainAxisAlignment: MainAxisAlignment .center,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class GFDrawerHeaderPictures extends StatelessWidget {
2828 Icons .close,
2929 color: Colors .white,
3030 ),
31- onPressed: (){
31+ onPressed: () {
3232 Navigator .pop (context);
3333 },
3434 type: GFButtonType .transparent,
@@ -80,17 +80,17 @@ class GFDrawerHeader extends StatefulWidget {
8080 /// Creates a material design drawer header.
8181 ///
8282 /// Requires one of its ancestors to be a [Material] widget.
83- const GFDrawerHeader ({
84- Key key,
85- this .decoration,
86- this .margin = const EdgeInsets .only (bottom: 8.0 ),
87- this .currentAccountPicture,
88- this .otherAccountsPictures,
89- this .child,
90- this .duration = const Duration (milliseconds: 250 ),
91- this .curve = Curves .fastOutSlowIn,
92- this .closeButton
93- }) : super (key: key);
83+ const GFDrawerHeader (
84+ { Key key,
85+ this .decoration,
86+ this .margin = const EdgeInsets .only (bottom: 8.0 ),
87+ this .currentAccountPicture,
88+ this .otherAccountsPictures,
89+ this .child,
90+ this .duration = const Duration (milliseconds: 250 ),
91+ this .curve = Curves .fastOutSlowIn,
92+ this .closeButton})
93+ : super (key: key);
9494
9595 /// The header's background. If decoration is null then a [BoxDecoration]
9696 /// with its background color set to the current theme's primaryColor is used.
You can’t perform that action at this time.
0 commit comments