Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Hossam Ahmed
flutter_awesome_select
Commits
db5c84de
Commit
db5c84de
authored
3 years ago
by
Akbar Pulatov
Browse files
Options
Download
Email Patches
Plain Diff
bug fix #4
parent
6947d8ae
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
0 deletions
+24
-0
example/lib/features_choices/choices_main.dart
example/lib/features_choices/choices_main.dart
+4
-0
example/lib/features_modal/modal_main.dart
example/lib/features_modal/modal_main.dart
+4
-0
example/lib/features_multi/multi_main.dart
example/lib/features_multi/multi_main.dart
+4
-0
example/lib/features_option/option_main.dart
example/lib/features_option/option_main.dart
+4
-0
example/lib/features_single/single_main.dart
example/lib/features_single/single_main.dart
+4
-0
example/lib/features_tile/tile_main.dart
example/lib/features_tile/tile_main.dart
+4
-0
No files found.
example/lib/features_choices/choices_main.dart
View file @
db5c84de
...
...
@@ -8,10 +8,14 @@ import '../features_header.dart';
import
'../keep_alive.dart'
;
class
FeaturesChoices
extends
StatelessWidget
{
final
scrollController
=
ScrollController
();
@override
Widget
build
(
BuildContext
context
)
{
return
Scrollbar
(
controller:
scrollController
,
child:
ListView
(
controller:
scrollController
,
addAutomaticKeepAlives:
true
,
children:
<
Widget
>[
KeepAliveWidget
(
...
...
This diff is collapsed.
Click to expand it.
example/lib/features_modal/modal_main.dart
View file @
db5c84de
...
...
@@ -12,10 +12,14 @@ import '../features_header.dart';
import
'../keep_alive.dart'
;
class
FeaturesModal
extends
StatelessWidget
{
final
scrollController
=
ScrollController
();
@override
Widget
build
(
BuildContext
context
)
{
return
Scrollbar
(
controller:
scrollController
,
child:
ListView
(
controller:
scrollController
,
addAutomaticKeepAlives:
true
,
children:
<
Widget
>[
KeepAliveWidget
(
...
...
This diff is collapsed.
Click to expand it.
example/lib/features_multi/multi_main.dart
View file @
db5c84de
...
...
@@ -9,10 +9,14 @@ import '../features_header.dart';
import
'../keep_alive.dart'
;
class
FeaturesMulti
extends
StatelessWidget
{
final
scrollController
=
ScrollController
();
@override
Widget
build
(
BuildContext
context
)
{
return
Scrollbar
(
controller:
scrollController
,
child:
ListView
(
controller:
scrollController
,
addAutomaticKeepAlives:
true
,
children:
<
Widget
>[
KeepAliveWidget
(
...
...
This diff is collapsed.
Click to expand it.
example/lib/features_option/option_main.dart
View file @
db5c84de
...
...
@@ -10,10 +10,14 @@ import '../features_header.dart';
import
'../keep_alive.dart'
;
class
FeaturesOption
extends
StatelessWidget
{
final
scrollController
=
ScrollController
();
@override
Widget
build
(
BuildContext
context
)
{
return
Scrollbar
(
controller:
scrollController
,
child:
ListView
(
controller:
scrollController
,
addAutomaticKeepAlives:
true
,
children:
<
Widget
>[
KeepAliveWidget
(
...
...
This diff is collapsed.
Click to expand it.
example/lib/features_single/single_main.dart
View file @
db5c84de
...
...
@@ -9,10 +9,14 @@ import '../features_header.dart';
import
'../keep_alive.dart'
;
class
FeaturesSingle
extends
StatelessWidget
{
final
scrollController
=
ScrollController
();
@override
Widget
build
(
BuildContext
context
)
{
return
Scrollbar
(
controller:
scrollController
,
child:
ListView
(
controller:
scrollController
,
addAutomaticKeepAlives:
true
,
children:
<
Widget
>[
KeepAliveWidget
(
...
...
This diff is collapsed.
Click to expand it.
example/lib/features_tile/tile_main.dart
View file @
db5c84de
...
...
@@ -11,10 +11,14 @@ import '../features_header.dart';
import
'../keep_alive.dart'
;
class
FeaturesTile
extends
StatelessWidget
{
final
scrollController
=
ScrollController
();
@override
Widget
build
(
BuildContext
context
)
{
return
Scrollbar
(
controller:
scrollController
,
child:
ListView
(
controller:
scrollController
,
addAutomaticKeepAlives:
true
,
children:
<
Widget
>[
StickyHeader
(
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment