mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
22 lines
490 B
Dart
22 lines
490 B
Dart
import 'package:comunic/ui/routes/user_page_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:meta/meta.dart';
|
|
|
|
/// Navigation utilities
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
/// Open the page of a user
|
|
void openUserPage({@required int userID, @required BuildContext context}) {
|
|
assert(userID != null);
|
|
assert(context != null);
|
|
|
|
Navigator.of(context).push(
|
|
MaterialPageRoute(
|
|
builder: (c) => UserPageRoute(
|
|
userID: userID,
|
|
),
|
|
),
|
|
);
|
|
}
|