Skip to content

Commit 2f31008

Browse files
committed
gftile changed
1 parent f57ac64 commit 2f31008

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

example/lib/main.dart

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -403,16 +403,16 @@ class _MyHomePageState extends State<MyHomePage>
403403
// ),
404404
// ),
405405
//
406-
// GFCard(
407-
// content: GFImageOverlay(
408-
// height: 200.0,
409-
// width: 200.0,
410-
// image: AssetImage("lib/assets/food.jpeg"),
411-
// boxFit: BoxFit.fill,
412-
// colorFilter: new ColorFilter.mode(Colors.black.withOpacity(0.67), BlendMode.darken),
413-
// shape: BoxShape.circle,
414-
// ),
415-
// ),
406+
GFCard(
407+
content: GFImageOverlay(
408+
height: 200.0,
409+
width: 200.0,
410+
image: AssetImage("lib/assets/food.jpeg"),
411+
boxFit: BoxFit.fill,
412+
colorFilter: new ColorFilter.mode(Colors.black.withOpacity(0.67), BlendMode.darken),
413+
shape: BoxShape.circle,
414+
),
415+
),
416416
//
417417
// GFCard(
418418
// content: Container(

lib/components/list_tile/gf_list_tile.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ class GFListTile extends StatelessWidget {
111111
description ?? Container()
112112
],
113113
)
114-
: null,
114+
: Container(),
115115
trailing: icon != null
116116
? Column(
117117
children: <Widget>[
118118
Padding(
119119
padding: EdgeInsets.only(top: 16.0), child: icon)
120120
],
121121
)
122-
: null),
122+
: Container()),
123123
),
124124
showDivider
125125
? Divider(

0 commit comments

Comments
 (0)