Skip to content

Commit 4c4d8b2

Browse files
Sandip KakadiyaSandip Kakadiya
authored andcommitted
new version published
1 parent a39e992 commit 4c4d8b2

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22

33

4-
## 1.0.0-dev.4 - 2020-01-16
4+
## 1.0.0-dev.6 - 2020-01-16
55

66
### Fixed
77
* ListTile re-implemeted.

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ packages:
8080
path: ".."
8181
relative: true
8282
source: path
83-
version: "1.0.0-dev.4"
83+
version: "1.0.0-dev.6"
8484
image:
8585
dependency: transitive
8686
description:

lib/components/appbar/gf_appbar.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,9 @@ class GFAppBar extends StatefulWidget implements PreferredSizeWidget {
203203
return false;
204204
case TargetPlatform.iOS:
205205
return trailing == null || trailing.length < 2;
206+
default:
207+
return false;
206208
}
207-
return null;
208209
}
209210

210211
@override
@@ -290,12 +291,13 @@ class _GFAppBarState extends State<GFAppBar> {
290291
bool namesRoute;
291292
switch (theme.platform) {
292293
case TargetPlatform.android:
293-
case TargetPlatform.macOS:
294294
case TargetPlatform.fuchsia:
295295
namesRoute = true;
296296
break;
297+
case TargetPlatform.macOS:
297298
case TargetPlatform.iOS:
298299
break;
300+
default:
299301
}
300302
title = DefaultTextStyle(
301303
style: centerStyle,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: getflutter
22
description: GetFlutter is open source libraries that come with pre-build 1000+ UI components. It makes development faster & more enjoyable. You can customize the component as per your need.
3-
version: 1.0.0-dev.4
3+
version: 1.0.0-dev.6
44
#author: GetFlutter <[email protected]>
55
homepage: https://github.com/ionicfirebaseapp/getflutter
66

0 commit comments

Comments
 (0)