mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-23 09:08:24 +00:00
feat: expand rich text to handle gestures.
(cherry picked from commit ce1eca28e1b9a5ef443f1123ac1b33d89efb6788)
This commit is contained in:
parent
843121812c
commit
a3bd9fd0e1
1 changed files with 4 additions and 1 deletions
|
|
@ -129,7 +129,10 @@ class _FlowyRichTextState extends State<FlowyRichText> with Selectable {
|
|||
}
|
||||
|
||||
Widget _buildRichText(BuildContext context) {
|
||||
return _buildSingleRichText(context);
|
||||
return Align(
|
||||
alignment: Alignment.centerLeft,
|
||||
child: _buildSingleRichText(context),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildSingleRichText(BuildContext context) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue