File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
frontend/app_flowy/lib/plugins/grid/presentation/widgets Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,14 @@ class SelectOptionTextField extends StatelessWidget {
4949 initialTags: selectedOptionMap.keys.toList (),
5050 focusNode: _focusNode,
5151 textSeparators: const [',' ],
52- inputfieldBuilder: (BuildContext context, editController, focusNode,
53- error, onChanged, onSubmitted) {
52+ inputfieldBuilder: (
53+ BuildContext context,
54+ editController,
55+ focusNode,
56+ error,
57+ onChanged,
58+ onSubmitted,
59+ ) {
5460 return ((context, sc, tags, onTagDelegate) {
5561 return TextField (
5662 autofocus: true ,
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ class FieldTypeOptionEditor extends StatelessWidget {
6565 return SizedBox (
6666 height: GridSize .typeOptionItemHeight,
6767 child: AppFlowyPopover (
68- constraints: BoxConstraints .loose (const Size (460 , 440 )),
68+ constraints: BoxConstraints .loose (const Size (460 , 540 )),
6969 asBarrier: true ,
7070 triggerActions: PopoverTriggerFlags .click | PopoverTriggerFlags .hover,
7171 mutex: popoverMutex,
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ class DateTypeOptionWidget extends TypeOptionWidget {
6464 Widget _renderDateFormatButton (BuildContext context, DateFormat dataFormat) {
6565 return AppFlowyPopover (
6666 mutex: popoverMutex,
67+ asBarrier: true ,
6768 triggerActions: PopoverTriggerFlags .hover | PopoverTriggerFlags .click,
6869 offset: const Offset (20 , 0 ),
6970 constraints: BoxConstraints .loose (const Size (460 , 440 )),
@@ -85,6 +86,7 @@ class DateTypeOptionWidget extends TypeOptionWidget {
8586 Widget _renderTimeFormatButton (BuildContext context, TimeFormat timeFormat) {
8687 return AppFlowyPopover (
8788 mutex: popoverMutex,
89+ asBarrier: true ,
8890 triggerActions: PopoverTriggerFlags .hover | PopoverTriggerFlags .click,
8991 offset: const Offset (20 , 0 ),
9092 constraints: BoxConstraints .loose (const Size (460 , 440 )),
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ class _GridPropertyCell extends StatelessWidget {
120120 mutex: popoverMutex,
121121 triggerActions: PopoverTriggerFlags .click,
122122 offset: const Offset (20 , 0 ),
123- constraints: BoxConstraints .loose (const Size (240 , 200 )),
123+ constraints: BoxConstraints .loose (const Size (240 , 400 )),
124124 child: FlowyButton (
125125 text: FlowyText .medium (fieldContext.name, fontSize: 12 ),
126126 hoverColor: theme.hover,
You can’t perform that action at this time.
0 commit comments