33 lines
661 B
Dart
33 lines
661 B
Dart
import '/flutter_flow/flutter_flow_util.dart';
|
|
import 'dart:async';
|
|
import 'qr_code_page_widget.dart' show QrCodePageWidget;
|
|
import 'package:flutter/material.dart';
|
|
|
|
class QrCodePageModel extends FlutterFlowModel<QrCodePageWidget> {
|
|
/// Local state fields for this page.
|
|
|
|
bool isAccess = false;
|
|
|
|
String? key;
|
|
|
|
DateTime? time;
|
|
|
|
/// State fields for stateful widgets in this page.
|
|
|
|
final unfocusNode = FocusNode();
|
|
|
|
@override
|
|
void initState(BuildContext context) {}
|
|
|
|
@override
|
|
void dispose() {
|
|
unfocusNode.dispose();
|
|
}
|
|
|
|
/// Action blocks.
|
|
Future qrCodeEncoder(
|
|
BuildContext context, {
|
|
required String? key,
|
|
}) async {}
|
|
}
|