chore: Update matrix und vrouter
This commit is contained in:
parent
83665b593b
commit
7ca96aee03
35 changed files with 63 additions and 63 deletions
|
|
@ -53,7 +53,7 @@ class ChatDetailsView extends StatelessWidget {
|
|||
leading: IconButton(
|
||||
icon: Icon(Icons.close_outlined),
|
||||
onPressed: () =>
|
||||
VRouter.of(context).push('/rooms/${controller.roomId}'),
|
||||
VRouter.of(context).to('/rooms/${controller.roomId}'),
|
||||
),
|
||||
elevation: Theme.of(context).appBarTheme.elevation,
|
||||
expandedHeight: 300.0,
|
||||
|
|
@ -313,8 +313,8 @@ class ChatDetailsView extends StatelessWidget {
|
|||
foregroundColor: Colors.grey,
|
||||
child: Icon(Icons.edit_attributes_outlined),
|
||||
),
|
||||
onTap: () => VRouter.of(context).push(
|
||||
'/rooms/${room.id}/details/permissions'),
|
||||
onTap: () => VRouter.of(context)
|
||||
.to('/rooms/${room.id}/details/permissions'),
|
||||
),
|
||||
Divider(thickness: 1),
|
||||
ListTile(
|
||||
|
|
@ -341,7 +341,7 @@ class ChatDetailsView extends StatelessWidget {
|
|||
child: Icon(Icons.add_outlined),
|
||||
),
|
||||
onTap: () => VRouter.of(context)
|
||||
.push('/rooms/${room.id}/invite'),
|
||||
.to('/rooms/${room.id}/invite'),
|
||||
)
|
||||
: Container(),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue