mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
12 lines
250 B
Dart
12 lines
250 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class CustomPageRoute extends MaterialPageRoute {
|
|
CustomPageRoute({
|
|
required super.builder,
|
|
super.settings,
|
|
});
|
|
|
|
@override
|
|
Duration get transitionDuration => const Duration(milliseconds: 0);
|
|
}
|