fix: Minor padding bugs
This commit is contained in:
parent
158e386b46
commit
d71cb9bdc4
3 changed files with 10 additions and 5 deletions
|
|
@ -127,6 +127,7 @@ class ChatView extends StatelessWidget {
|
|||
context: context, future: () => controller.room.join());
|
||||
}
|
||||
final bottomSheetPadding = FluffyThemes.isColumnMode(context) ? 16.0 : 8.0;
|
||||
final horizontalPadding = FluffyThemes.isColumnMode(context) ? 8.0 : 0.0;
|
||||
|
||||
return VWidgetGuard(
|
||||
onSystemPop: (redirector) async {
|
||||
|
|
@ -205,9 +206,11 @@ class ChatView extends StatelessWidget {
|
|||
controller.filteredEvents[i].eventId] = i;
|
||||
}
|
||||
return ListView.custom(
|
||||
padding: const EdgeInsets.only(
|
||||
padding: EdgeInsets.only(
|
||||
top: 16,
|
||||
bottom: 4,
|
||||
left: horizontalPadding,
|
||||
right: horizontalPadding,
|
||||
),
|
||||
reverse: true,
|
||||
controller: controller.scrollController,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue