File tree Expand file tree Collapse file tree 8 files changed +38
-12
lines changed Expand file tree Collapse file tree 8 files changed +38
-12
lines changed Original file line number Diff line number Diff line change
1
+ # CHANGELOG
2
+
3
+ ## 1.3.3
4
+
5
+ * Fix for Sticky Header
6
+
1
7
## 1.3.2 - 05.0629.2019
2
8
3
9
* Upgrading Packages
Original file line number Diff line number Diff line change
1
+ //
2
+ // Generated file. Do not edit.
3
+ //
4
+ import Foundation
5
+ import FlutterMacOS
6
+
7
+
8
+ func RegisterGeneratedPlugins( registry: FlutterPluginRegistry ) {
9
+ }
Original file line number Diff line number Diff line change
1
+ // This is a generated file; do not edit or check into version control.
2
+ FLUTTER_ROOT=/usr/local/Caskroom/flutter/1.2.1/flutter
3
+ FLUTTER_APPLICATION_PATH=/Users/rodydavis/Development/github/flutter/native_widgets/example
4
+ FLUTTER_BUILD_DIR=build
5
+ FLUTTER_FRAMEWORK_DIR=/usr/local/Caskroom/flutter/1.2.1/flutter/bin/cache/artifacts/engine/darwin-x64
Original file line number Diff line number Diff line change 1
1
# Generated by pub
2
- # See https://www.dartlang.org /tools/pub/glossary#lockfile
2
+ # See https://dart.dev /tools/pub/glossary#lockfile
3
3
packages:
4
4
async:
5
5
dependency: transitive
@@ -120,7 +120,7 @@ packages:
120
120
path: ".."
121
121
relative: true
122
122
source: path
123
- version: "1.3.2 "
123
+ version: "1.3.3 "
124
124
path:
125
125
dependency: transitive
126
126
description:
@@ -134,7 +134,7 @@ packages:
134
134
name: pedantic
135
135
url: "https://pub.dartlang.org"
136
136
source: hosted
137
- version: "1.5 .0"
137
+ version: "1.7 .0"
138
138
quiver:
139
139
dependency: transitive
140
140
description:
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class NativeListViewSection {
128
128
129
129
NativeListViewSection ({
130
130
this .header,
131
- @required List <Widget > children = const < Widget > [] ,
131
+ @required List <Widget > children,
132
132
bool addAutomaticKeepAlives = true ,
133
133
bool addRepaintBoundaries = true ,
134
134
bool addSemanticIndexes = true ,
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class IOSSearchBar extends AnimatedWidget {
44
44
static final _paddingTween = new Tween (begin: 0.0 , end: 60.0 );
45
45
static final _kFontSize = 13.0 ;
46
46
final bool autoFocus;
47
- Key _inputKey = new GlobalKey (debugLabel: 'inputText' );
47
+ final Key _inputKey = new GlobalKey (debugLabel: 'inputText' );
48
48
@override
49
49
Widget build (BuildContext context) {
50
50
// if (!isSearching) {
@@ -167,6 +167,7 @@ class IOSSearchBar extends AnimatedWidget {
167
167
fontSize: _kFontSize,
168
168
),
169
169
cursorColor: CupertinoColors .black,
170
+ backgroundCursorColor: Colors .grey,
170
171
// backgroundCursorColor: Colors.grey,
171
172
),
172
173
),
Original file line number Diff line number Diff line change 1
1
# Generated by pub
2
- # See https://www.dartlang.org /tools/pub/glossary#lockfile
2
+ # See https://dart.dev /tools/pub/glossary#lockfile
3
3
packages:
4
4
async:
5
5
dependency: transitive
@@ -84,9 +84,11 @@ packages:
84
84
flutter_sticky_header:
85
85
dependency: "direct main"
86
86
description:
87
- name: flutter_sticky_header
88
- url: "https://pub.dartlang.org"
89
- source: hosted
87
+ path: "."
88
+ ref: HEAD
89
+ resolved-ref: b2f5cd11d73bcf9c661333f65d36b75e80406112
90
+ url: "https://github.com/AppleEducate/flutter_sticky_header"
91
+ source: git
90
92
version: "0.4.0"
91
93
flutter_test:
92
94
dependency: "direct dev"
@@ -127,7 +129,7 @@ packages:
127
129
name: pedantic
128
130
url: "https://pub.dartlang.org"
129
131
source: hosted
130
- version: "1.5 .0"
132
+ version: "1.7 .0"
131
133
quiver:
132
134
dependency: transitive
133
135
description:
@@ -205,4 +207,3 @@ packages:
205
207
version: "2.0.8"
206
208
sdks:
207
209
dart: ">=2.2.0 <3.0.0"
208
- flutter: ">=1.5.9-pre.94 <2.0.0"
Original file line number Diff line number Diff line change 1
1
name : native_widgets
2
2
description : A new Flutter package for using Android and iOS natively on each platform.
3
- version : 1.3.2
3
+ version : 1.3.3
4
4
author :
Rhodes Davis Jr. <[email protected] >
5
5
homepage : https://github.com/fluttercommunity/native_widgets
6
6
maintainer : Rody Davis (@AppleEducate)
@@ -24,6 +24,10 @@ dev_dependencies:
24
24
flutter_test :
25
25
sdk : flutter
26
26
27
+ dependency_overrides :
28
+ flutter_sticky_header :
29
+ git : https://github.com/AppleEducate/flutter_sticky_header
30
+
27
31
# For information on the generic Dart part of this file, see the
28
32
# following page: https://www.dartlang.org/tools/pub/pubspec
29
33
You can’t perform that action at this time.
0 commit comments