20 lines
400 B
Dart
20 lines
400 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 Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('扫一扫'),
|
|
),
|
|
);
|
|
}
|
|
}
|