Skip to content

Commit 6ee7f97

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

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
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.6 - 2020-01-16
4+
## 1.0.0-dev.8 - 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.6"
83+
version: "1.0.0-dev.8"
8484
image:
8585
dependency: transitive
8686
description:

lib/components/appbar/gf_appbar.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ class GFAppBar extends StatefulWidget implements PreferredSizeWidget {
198198
assert(theme.platform != null);
199199
switch (theme.platform) {
200200
case TargetPlatform.android:
201-
case TargetPlatform.macOS:
202201
case TargetPlatform.fuchsia:
203202
return false;
204203
case TargetPlatform.iOS:
@@ -294,10 +293,10 @@ class _GFAppBarState extends State<GFAppBar> {
294293
case TargetPlatform.fuchsia:
295294
namesRoute = true;
296295
break;
297-
case TargetPlatform.macOS:
298296
case TargetPlatform.iOS:
299297
break;
300298
default:
299+
break;
301300
}
302301
title = DefaultTextStyle(
303302
style: centerStyle,

lib/components/drawer/gf_drawer.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,11 @@ class GFDrawer extends StatelessWidget {
114114
label = semanticLabel;
115115
break;
116116
case TargetPlatform.android:
117-
case TargetPlatform.macOS:
118117
case TargetPlatform.fuchsia:
119118
label = semanticLabel ?? MaterialLocalizations.of(context)?.drawerLabel;
119+
break;
120+
default:
121+
break;
120122
}
121123
return Semantics(
122124
scopesRoute: true,

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.6
3+
version: 1.0.0-dev.8
44
#author: GetFlutter <[email protected]>
55
homepage: https://github.com/ionicfirebaseapp/getflutter
66

0 commit comments

Comments
 (0)