mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
8 lines
204 B
Dart
8 lines
204 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
extension PageControllerExtension on PageController {
|
|
Future<void> protectedJumpToPage(int index) async {
|
|
if (this.hasClients) this.jumpToPage(index);
|
|
}
|
|
}
|