mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: calendar event editor field name overflow (#3877)
This commit is contained in:
parent
85af82acbe
commit
eb54cf99d4
@ -144,7 +144,7 @@ class EventPropertyList extends StatelessWidget {
|
|||||||
textStyle: Theme.of(context)
|
textStyle: Theme.of(context)
|
||||||
.textTheme
|
.textTheme
|
||||||
.bodyMedium
|
.bodyMedium
|
||||||
?.copyWith(fontSize: 11),
|
?.copyWith(fontSize: 11, overflow: TextOverflow.ellipsis),
|
||||||
autofocus: true,
|
autofocus: true,
|
||||||
useRoundedBorder: true,
|
useRoundedBorder: true,
|
||||||
),
|
),
|
||||||
@ -213,10 +213,13 @@ class _PropertyCellState extends State<PropertyCell> {
|
|||||||
size: const Size.square(14),
|
size: const Size.square(14),
|
||||||
),
|
),
|
||||||
const HSpace(4.0),
|
const HSpace(4.0),
|
||||||
FlowyText.regular(
|
Expanded(
|
||||||
widget.cellContext.fieldInfo.name,
|
child: FlowyText.regular(
|
||||||
color: Theme.of(context).hintColor,
|
widget.cellContext.fieldInfo.name,
|
||||||
fontSize: 11,
|
color: Theme.of(context).hintColor,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
fontSize: 11,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user