fix formatting
This commit is contained in:
parent
b6c3506126
commit
20efc3dbb6
|
@ -679,8 +679,11 @@ class _ChatState extends State<_Chat> {
|
|||
child: Swipeable(
|
||||
key: ValueKey(i - 1),
|
||||
background: Container(
|
||||
color: Theme.of(context).primaryColor.withAlpha(100),
|
||||
padding: EdgeInsets.symmetric(horizontal: 12.0),
|
||||
color: Theme.of(context)
|
||||
.primaryColor
|
||||
.withAlpha(100),
|
||||
padding: EdgeInsets.symmetric(
|
||||
horizontal: 12.0),
|
||||
alignment: Alignment.centerLeft,
|
||||
child: Row(
|
||||
children: [
|
||||
|
@ -710,8 +713,8 @@ class _ChatState extends State<_Chat> {
|
|||
);
|
||||
} else {
|
||||
setState(
|
||||
() =>
|
||||
selectedEvents.add(event),
|
||||
() => selectedEvents
|
||||
.add(event),
|
||||
);
|
||||
}
|
||||
selectedEvents.sort(
|
||||
|
@ -726,8 +729,8 @@ class _ChatState extends State<_Chat> {
|
|||
context: context),
|
||||
longPressSelect:
|
||||
selectedEvents.isEmpty,
|
||||
selected: selectedEvents
|
||||
.contains(filteredEvents[i - 1]),
|
||||
selected: selectedEvents.contains(
|
||||
filteredEvents[i - 1]),
|
||||
timeline: timeline,
|
||||
nextEvent: i >= 2
|
||||
? filteredEvents[i - 2]
|
||||
|
|
Loading…
Reference in a new issue