chore: enable timestamp field on mobile (#4506)

This commit is contained in:
Richard Shiue
2024-01-26 22:23:47 +08:00
committed by GitHub
parent 64cd7d41ca
commit 2e7a97c8a2
5 changed files with 151 additions and 51 deletions

View File

@ -13,14 +13,13 @@ class MobileGridTimestampCellSkin extends IEditableTimestampCellSkin {
TimestampCellBloc bloc,
TimestampCellState state,
) {
return Align(
return Container(
alignment: Alignment.centerLeft,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 12),
child: FlowyText(
state.dateStr,
fontSize: 15,
),
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 12),
child: FlowyText(
state.dateStr,
fontSize: 15,
overflow: TextOverflow.ellipsis,
),
);
}