first commit
This commit is contained in:
29
lib/bookkeeping/bk4_2/bk42_model.dart
Normal file
29
lib/bookkeeping/bk4_2/bk42_model.dart
Normal file
@@ -0,0 +1,29 @@
|
||||
import '/flutterlib/flutter_theme.dart';
|
||||
import '/flutterlib/flutter_util.dart';
|
||||
import '/flutterlib/flutter_widgets.dart';
|
||||
import 'bk42_widget.dart' show Bk42Widget;
|
||||
import 'package:badges/badges.dart' as badges;
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter_svg/flutter_svg.dart';
|
||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class Bk42Model extends FlutterModel<Bk42Widget> {
|
||||
/// State fields for stateful widgets in this page.
|
||||
|
||||
final unfocusNode = FocusNode();
|
||||
|
||||
/// Initialization and disposal methods.
|
||||
|
||||
void initState(BuildContext context) {}
|
||||
|
||||
void dispose() {
|
||||
unfocusNode.dispose();
|
||||
}
|
||||
|
||||
/// Action blocks are added here.
|
||||
|
||||
/// Additional helper methods are added here.
|
||||
}
|
||||
1249
lib/bookkeeping/bk4_2/bk42_widget.dart
Normal file
1249
lib/bookkeeping/bk4_2/bk42_widget.dart
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user