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