页面逻辑

This commit is contained in:
2022-10-20 16:08:27 +08:00
parent 8ad451d4d8
commit 0a81762ba1
12 changed files with 197 additions and 25 deletions

View File

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
class UserSharePage extends StatefulWidget {
const UserSharePage({Key? key}) : super(key: key);
@override
State<UserSharePage> createState() => _UserSharePageState();
}
class _UserSharePageState extends State<UserSharePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('分享邀请'),
),
body: Container(),
);
}
}