Skip to content

Commit

Permalink
modify to add all pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ryu1sazae committed Jun 8, 2020
1 parent 82185ec commit 52a2853
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/pages/all/all_page.dart
Original file line number Diff line number Diff line change
@@ -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'),
),
);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import 'package:flutter/material.dart';

class InputParticipantInfoPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container();
}
}
8 changes: 8 additions & 0 deletions lib/pages/new_profile/new_profile_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import 'package:flutter/material.dart';

class NewProfilePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container();
}
}
8 changes: 8 additions & 0 deletions lib/pages/profile_detail/profile_detail_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import 'package:flutter/material.dart';

class ProfileDetailPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container();
}
}

0 comments on commit 52a2853

Please sign in to comment.