chore: show url cell editor when tap on edit button

This commit is contained in:
appflowy 2022-05-30 08:56:08 +08:00
parent 7ff841c3d8
commit 5da8144456

View File

@ -72,7 +72,10 @@ class _GridURLCellState extends State<GridURLCell> {
return CellEnterRegion(
child: Align(alignment: Alignment.centerLeft, child: richText),
expander: _EditCellIndicator(onTap: () {}),
expander: _EditCellIndicator(onTap: () {
final cellContext = widget.cellContextBuilder.build() as GridURLCellContext;
URLCellEditor.show(context, cellContext);
}),
);
},
),