💄 Bug fixes and optimization

This commit is contained in:
2024-04-14 01:45:27 +08:00
parent 4489b604d6
commit 07935a4017
7 changed files with 175 additions and 69 deletions

View File

@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class NewMomentScreen extends StatelessWidget {
const NewMomentScreen({super.key});
@override
Widget build(BuildContext context) {
return Center(
child: Container(
constraints: const BoxConstraints(maxWidth: 640),
child: Column(
children: [
],
),
),
);
}
}