16 lines
325 B
Dart
16 lines
325 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ScanPage extends StatefulWidget {
|
|
const ScanPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_ScanPageState createState() => _ScanPageState();
|
|
}
|
|
|
|
class _ScanPageState extends State<ScanPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|