This commit is contained in:
otsmr 2025-05-11 12:14:36 +02:00
parent c95014ae7b
commit 512fd28d29
2 changed files with 28 additions and 25 deletions

View file

@ -54,7 +54,7 @@ class _ChatListViewState extends State<ChatListView> {
style: TextStyle( style: TextStyle(
fontSize: 10, fontSize: 10,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: Colors.black, color: isDarkMode(context) ? Colors.black : Colors.white,
), ),
), ),
), ),

View file

@ -59,6 +59,8 @@ class _SettingsMainViewState extends State<SettingsMainView> {
})); }));
initAsync(); initAsync();
}, },
child: Container(
color: context.color.surface,
child: Row( child: Row(
children: [ children: [
ContactAvatar( ContactAvatar(
@ -87,6 +89,7 @@ class _SettingsMainViewState extends State<SettingsMainView> {
), ),
), ),
), ),
),
Align( Align(
alignment: Alignment.centerRight, alignment: Alignment.centerRight,
child: IconButton( child: IconButton(