design: New three column layout for wide screens

This commit is contained in:
krille-chan 2023-08-12 13:37:42 +02:00
commit d9c5cbea26
No known key found for this signature in database
7 changed files with 287 additions and 251 deletions

View file

@ -318,9 +318,9 @@ class ChatDetailsController extends State<ChatDetails> {
if ((room.states['im.ponies.room_emotes'] ?? <String, Event>{})
.keys
.any((String s) => s.isNotEmpty)) {
context.go('/rooms/${room.id}/details/multiple_emotes');
context.push('/rooms/${room.id}/details/multiple_emotes');
} else {
context.go('/rooms/${room.id}/details/emotes');
context.push('/rooms/${room.id}/details/emotes');
}
}