pushWithTheme<T> static method
Implementation
static Future<T?> pushWithTheme<T>(BuildContext context, Widget page) {
return Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => Theme(
data: FlutterPixPagstar.theme,
child: page,
),
),
);
}