@@ -5,7 +5,6 @@ import 'package:appflowy/plugins/database/application/database_controller.dart';
5
5
import 'package:appflowy/plugins/database/application/field/field_info.dart' ;
6
6
import 'package:appflowy/plugins/database/application/row/row_service.dart' ;
7
7
import 'package:appflowy/plugins/database/grid/application/grid_bloc.dart' ;
8
- import 'package:appflowy/plugins/database/grid/presentation/widgets/shortcuts.dart' ;
9
8
import 'package:appflowy/plugins/database/tab_bar/tab_bar_view.dart' ;
10
9
import 'package:appflowy/shared/flowy_error_page.dart' ;
11
10
import 'package:appflowy/startup/startup.dart' ;
@@ -42,6 +41,7 @@ class MobileGridTabBarBuilderImpl extends DatabaseTabBarItemBuilder {
42
41
view: view,
43
42
databaseController: controller,
44
43
initialRowId: initialRowId,
44
+ shrinkWrap: shrinkWrap,
45
45
);
46
46
}
47
47
@@ -68,12 +68,14 @@ class MobileGridPage extends StatefulWidget {
68
68
required this .databaseController,
69
69
this .onDeleted,
70
70
this .initialRowId,
71
+ this .shrinkWrap = false ,
71
72
});
72
73
73
74
final ViewPB view;
74
75
final DatabaseController databaseController;
75
76
final VoidCallback ? onDeleted;
76
77
final String ? initialRowId;
78
+ final bool shrinkWrap;
77
79
78
80
@override
79
81
State <MobileGridPage > createState () => _MobileGridPageState ();
@@ -104,7 +106,10 @@ class _MobileGridPageState extends State<MobileGridPage> {
104
106
finish: (result) {
105
107
_openRow (context, widget.initialRowId, true );
106
108
return result.successOrFail.fold (
107
- (_) => GridShortcuts (child: GridPageContent (view: widget.view)),
109
+ (_) => GridPageContent (
110
+ view: widget.view,
111
+ shrinkWrap: widget.shrinkWrap,
112
+ ),
108
113
(err) => Center (
109
114
child: AppFlowyErrorPage (
110
115
error: err,
@@ -145,9 +150,11 @@ class GridPageContent extends StatefulWidget {
145
150
const GridPageContent ({
146
151
super .key,
147
152
required this .view,
153
+ this .shrinkWrap = false ,
148
154
});
149
155
150
156
final ViewPB view;
157
+ final bool shrinkWrap;
151
158
152
159
@override
153
160
State <GridPageContent > createState () => _GridPageContentState ();
@@ -196,6 +203,7 @@ class _GridPageContentState extends State<GridPageContent> {
196
203
children: [
197
204
Column (
198
205
crossAxisAlignment: CrossAxisAlignment .start,
206
+ mainAxisSize: MainAxisSize .min,
199
207
children: [
200
208
_GridHeader (
201
209
contentScrollController: contentScrollController,
@@ -207,11 +215,12 @@ class _GridPageContentState extends State<GridPageContent> {
207
215
),
208
216
],
209
217
),
210
- Positioned (
211
- bottom: 16 ,
212
- right: 16 ,
213
- child: getGridFabs (context),
214
- ),
218
+ if (! widget.shrinkWrap)
219
+ Positioned (
220
+ bottom: 16 ,
221
+ right: 16 ,
222
+ child: getGridFabs (context),
223
+ ),
215
224
],
216
225
),
217
226
);
@@ -256,7 +265,7 @@ class _GridRows extends StatelessWidget {
256
265
buildWhen: (previous, current) => previous.fields != current.fields,
257
266
builder: (context, state) {
258
267
final double contentWidth = getMobileGridContentWidth (state.fields);
259
- return Expanded (
268
+ return Flexible (
260
269
child: _WrapScrollView (
261
270
scrollController: scrollController,
262
271
contentWidth: contentWidth,
@@ -305,6 +314,7 @@ class _GridRows extends StatelessWidget {
305
314
return ReorderableListView .builder (
306
315
scrollController: scrollController.verticalController,
307
316
buildDefaultDragHandles: false ,
317
+ shrinkWrap: true ,
308
318
proxyDecorator: (child, index, animation) => Material (
309
319
color: Colors .transparent,
310
320
child: child,
0 commit comments