mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-03-03 14:10:39 +01:00
chore: Remove dividers
This commit is contained in:
parent
6108c1bb15
commit
e2724cdc46
@ -195,23 +195,7 @@ class ChatListView extends StatelessWidget {
|
||||
);
|
||||
}
|
||||
final totalCount = rooms.length + 1;
|
||||
return ListView.separated(
|
||||
separatorBuilder: (_, __) => Row(
|
||||
children: [
|
||||
Spacer(),
|
||||
Container(
|
||||
height: 1,
|
||||
width: 200,
|
||||
decoration: BoxDecoration(
|
||||
gradient: LinearGradient(
|
||||
colors: [
|
||||
Colors.transparent,
|
||||
Theme.of(context).dividerColor,
|
||||
],
|
||||
)),
|
||||
),
|
||||
],
|
||||
),
|
||||
return ListView.builder(
|
||||
itemCount: totalCount,
|
||||
itemBuilder: (BuildContext context, int i) {
|
||||
if (i == 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user