Post new fab

This commit is contained in:
2024-11-10 01:34:58 +08:00
parent fa142a5f89
commit 05425da913
8 changed files with 122 additions and 2 deletions

View File

@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class PostEditorScreen extends StatelessWidget {
const PostEditorScreen({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}