This commit is contained in:
2022-10-31 16:49:05 +08:00
parent 5d8dca73d1
commit 4a15c7fa88
4 changed files with 97 additions and 43 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class UserSettingSafeMobilePage extends StatelessWidget {
const UserSettingSafeMobilePage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('绑定手机'),
),
body: Container(),
);
}
}