File tree 1 file changed +4
-2
lines changed
frontend/appflowy_flutter/lib/mobile/presentation/database/field
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ import 'package:appflowy/mobile/presentation/bottom_sheet/bottom_sheet.dart';
9
9
import 'package:appflowy/mobile/presentation/database/card/card_detail/widgets/widgets.dart' ;
10
10
import 'package:appflowy/mobile/presentation/widgets/widgets.dart' ;
11
11
import 'package:appflowy/plugins/base/drag_handler.dart' ;
12
- import 'package:appflowy/plugins/database/domain/field_service.dart' ;
13
12
import 'package:appflowy/plugins/database/application/field/type_option/number_format_bloc.dart' ;
14
- import 'package:appflowy/plugins/database/widgets/field/type_option_editor/date/date_time_format .dart' ;
13
+ import 'package:appflowy/plugins/database/domain/field_service .dart' ;
15
14
import 'package:appflowy/plugins/database/widgets/cell_editor/extension.dart' ;
15
+ import 'package:appflowy/plugins/database/widgets/field/type_option_editor/date/date_time_format.dart' ;
16
16
import 'package:appflowy/util/field_type_extension.dart' ;
17
17
import 'package:appflowy_backend/protobuf/flowy-database2/protobuf.dart' ;
18
18
import 'package:collection/collection.dart' ;
@@ -863,6 +863,8 @@ class _SelectOptionListState extends State<_SelectOptionList> {
863
863
return ListView (
864
864
shrinkWrap: true ,
865
865
padding: EdgeInsets .zero,
866
+ // disable the inner scroll physics, so the outer ListView can scroll
867
+ physics: const NeverScrollableScrollPhysics (),
866
868
children: widget.selectOptions
867
869
.mapIndexed (
868
870
(index, option) => _SelectOptionTile (
You can’t perform that action at this time.
0 commit comments