mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 12:48:41 +00:00
fix #161
This commit is contained in:
parent
c95014ae7b
commit
512fd28d29
2 changed files with 28 additions and 25 deletions
|
|
@ -54,7 +54,7 @@ class _ChatListViewState extends State<ChatListView> {
|
|||
style: TextStyle(
|
||||
fontSize: 10,
|
||||
fontWeight: FontWeight.bold,
|
||||
color: Colors.black,
|
||||
color: isDarkMode(context) ? Colors.black : Colors.white,
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -59,6 +59,8 @@ class _SettingsMainViewState extends State<SettingsMainView> {
|
|||
}));
|
||||
initAsync();
|
||||
},
|
||||
child: Container(
|
||||
color: context.color.surface,
|
||||
child: Row(
|
||||
children: [
|
||||
ContactAvatar(
|
||||
|
|
@ -87,6 +89,7 @@ class _SettingsMainViewState extends State<SettingsMainView> {
|
|||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Align(
|
||||
alignment: Alignment.centerRight,
|
||||
child: IconButton(
|
||||
|
|
|
|||
Loading…
Reference in a new issue