diff --git a/lib/pages/all/all_page.dart b/lib/pages/all/all_page.dart index e69de29..02cb2bf 100644 --- a/lib/pages/all/all_page.dart +++ b/lib/pages/all/all_page.dart @@ -0,0 +1,12 @@ +import 'package:flutter/material.dart'; + +class AllPage extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: Text('All page'), + ), + ); + } +} diff --git a/lib/pages/input_participant_info/input_participant_Info_page.dart b/lib/pages/input_participant_info/input_participant_Info_page.dart index e69de29..c1aa248 100644 --- a/lib/pages/input_participant_info/input_participant_Info_page.dart +++ b/lib/pages/input_participant_info/input_participant_Info_page.dart @@ -0,0 +1,8 @@ +import 'package:flutter/material.dart'; + +class InputParticipantInfoPage extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Container(); + } +} diff --git a/lib/pages/new_profile/new_profile_page.dart b/lib/pages/new_profile/new_profile_page.dart index e69de29..c1f1a02 100644 --- a/lib/pages/new_profile/new_profile_page.dart +++ b/lib/pages/new_profile/new_profile_page.dart @@ -0,0 +1,8 @@ +import 'package:flutter/material.dart'; + +class NewProfilePage extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Container(); + } +} diff --git a/lib/pages/profile_detail/profile_detail_page.dart b/lib/pages/profile_detail/profile_detail_page.dart index e69de29..e7cbe90 100644 --- a/lib/pages/profile_detail/profile_detail_page.dart +++ b/lib/pages/profile_detail/profile_detail_page.dart @@ -0,0 +1,8 @@ +import 'package:flutter/material.dart'; + +class ProfileDetailPage extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Container(); + } +}