chore: Remove dividers
This commit is contained in:
parent
2634187bff
commit
a7aa68f027
1 changed files with 1 additions and 17 deletions
|
|
@ -195,23 +195,7 @@ class ChatListView extends StatelessWidget {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
final totalCount = rooms.length + 1;
|
final totalCount = rooms.length + 1;
|
||||||
return ListView.separated(
|
return ListView.builder(
|
||||||
separatorBuilder: (_, __) => Row(
|
|
||||||
children: [
|
|
||||||
Spacer(),
|
|
||||||
Container(
|
|
||||||
height: 1,
|
|
||||||
width: 200,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
gradient: LinearGradient(
|
|
||||||
colors: [
|
|
||||||
Colors.transparent,
|
|
||||||
Theme.of(context).dividerColor,
|
|
||||||
],
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
itemCount: totalCount,
|
itemCount: totalCount,
|
||||||
itemBuilder: (BuildContext context, int i) {
|
itemBuilder: (BuildContext context, int i) {
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue