design: Make load more button an elevated button

This commit is contained in:
Christian Pauly 2021-06-20 14:05:47 +02:00
parent 8dea650300
commit 6ab0b02c6b
1 changed files with 7 additions and 13 deletions

View File

@ -277,20 +277,14 @@ class ChatView extends StatelessWidget {
child: CircularProgressIndicator(), child: CircularProgressIndicator(),
) )
: controller.canLoadMore : controller.canLoadMore
? TextButton( ? Center(
onPressed: child: OutlinedButton(
controller.requestHistory, onPressed:
child: Text( controller.requestHistory,
L10n.of(context).loadMore, child: Text(
style: TextStyle( L10n.of(context).loadMore),
color: Theme.of(context)
.primaryColor,
fontWeight: FontWeight.bold,
decoration: TextDecoration
.underline,
),
), ),
) )
: Container() : Container()
: i == 0 : i == 0
? StreamBuilder( ? StreamBuilder(