-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
119 lines (97 loc) · 3.03 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:flutter_quiz/quiz.dart';
import 'package:flutter_quiz/quiz_event_page.dart';
import 'package:flutter_quiz/title_page.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
await QuizDocument.loadQuizDocument();
runApp(MyApp());
}
class MyApp extends StatelessWidget {
MyApp(){
}
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: TitlePage(),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
_MyHomePageState(){
}
ListView _setQuizEventListView() {
return ListView.builder(
itemCount: QuizDocument.quizEventDocumentSnapshots.length,
itemBuilder: (BuildContext itemBuildContext, int index) {
var data = QuizDocument.quizEventDocumentSnapshots[index].data();
return Card(
child: Container(child:
Column(children: [
Text(
data['title'],
style: TextStyle(
fontSize: 20,
),
),
RaisedButton(
onPressed: () async{
String documentId = QuizDocument.quizEventDocumentSnapshots[index].id;
await QuizList.PrepareQuizList(documentId);
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) {
return QuizEventPage(quizEventDocumentId: documentId);
},
),
);
},
child: Text('挑戦'),
color: Colors.blueAccent,
textColor: Colors.white,
)
]),
height: 100,
),
elevation: 2,
);
},
);
}
@override
Widget build(BuildContext context) {
CollectionReference quizRef = FirebaseFirestore.instance.collection('quiz-test');
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Container(
child: _setQuizEventListView(),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}
class QuizDocument{
static List<DocumentSnapshot> quizEventDocumentSnapshots = List<DocumentSnapshot>();
static Future<List<DocumentSnapshot>> loadQuizDocument() async {
CollectionReference quizRef = FirebaseFirestore.instance.collection('quiz-test');
var querySnapShot = await quizRef.get();
quizEventDocumentSnapshots = querySnapShot.docs;
}
}