2023-11-01 17:58:05 +01:00
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2023-12-29 21:39:54 +01:00
|
|
|
/// Creates a PageRoute based on [Platform]
|
|
|
|
Route<T> platformRoute<T extends Object?>(
|
|
|
|
Widget Function(BuildContext) builder,
|
|
|
|
) =>
|
2023-11-01 17:58:05 +01:00
|
|
|
(Platform.isIOS)
|
|
|
|
? CupertinoPageRoute<T>(builder: builder)
|
|
|
|
: MaterialPageRoute<T>(builder: builder);
|