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