21 lines
608 B
Dart
21 lines
608 B
Dart
|
|
import '/flutterlib/flutter_theme.dart';
|
||
|
|
import '/flutterlib/flutter_util.dart';
|
||
|
|
import 'on_page_load_widget.dart' show OnPageLoadWidget;
|
||
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:flutter/scheduler.dart';
|
||
|
|
import 'package:flutter/services.dart';
|
||
|
|
import 'package:google_fonts/google_fonts.dart';
|
||
|
|
import 'package:provider/provider.dart';
|
||
|
|
|
||
|
|
class OnPageLoadModel extends FlutterModel<OnPageLoadWidget> {
|
||
|
|
/// Initialization and disposal methods.
|
||
|
|
|
||
|
|
void initState(BuildContext context) {}
|
||
|
|
|
||
|
|
void dispose() {}
|
||
|
|
|
||
|
|
/// Action blocks are added here.
|
||
|
|
|
||
|
|
/// Additional helper methods are added here.
|
||
|
|
}
|