1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-21 01:05:18 +00:00

Attempt to keep post create form

This commit is contained in:
2022-03-12 09:58:23 +01:00
parent 75c596226b
commit 0bd7426813
2 changed files with 4 additions and 2 deletions

View File

@ -38,10 +38,10 @@ class PostCreateFormWidget extends StatefulWidget {
}) : super(key: key);
@override
_PostCreateFormWidgetState createState() => _PostCreateFormWidgetState();
PostCreateFormWidgetState createState() => PostCreateFormWidgetState();
}
class _PostCreateFormWidgetState extends State<PostCreateFormWidget> {
class PostCreateFormWidgetState extends State<PostCreateFormWidget> {
// Helpers
final PostsHelper _postHelper = PostsHelper();