Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f1bad92

Browse files
committed
📦 NEW: screens
1 parent 3b024f4 commit f1bad92

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

‎lib/AddRecord.dart‎

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import 'package:flutter/material.dart';
2+
import 'package:assignment6/AppDrawer.dart';
3+
4+
class AddRecord extends StatefulWidget {
5+
@override
6+
NewRecordList createState() => NewRecordList();
7+
}
8+
9+
class NewRecordList extends State<AddRecord> {
10+
@override
11+
Widget build(BuildContext context) {
12+
return MaterialApp(
13+
title: 'Add Record',
14+
home: Scaffold(
15+
appBar: AppBar(title: Text('Add Records')),
16+
drawer: DrawerList(),
17+
body: SingleChildScrollView(
18+
child: ConstrainedBox(
19+
constraints: BoxConstraints(),
20+
child: Text('Add Record'),
21+
),
22+
),
23+
),
24+
);
25+
}
26+
}

‎lib/ListRecord.dart‎

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import 'package:flutter/material.dart';
2+
import 'package:assignment6/AppDrawer.dart';
3+
4+
class ListRecord extends StatefulWidget {
5+
@override
6+
NewListRecord createState() => NewListRecord();
7+
}
8+
9+
class NewListRecord extends State<ListRecord> {
10+
@override
11+
Widget build(BuildContext context) {
12+
return MaterialApp(
13+
title: 'List Record',
14+
home: Scaffold(
15+
appBar: AppBar(title: Text('List Records')),
16+
drawer: DrawerList(),
17+
body: SingleChildScrollView(
18+
child: ConstrainedBox(
19+
constraints: BoxConstraints(),
20+
child: Text('List Record'),
21+
),
22+
),
23+
),
24+
);
25+
}
26+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /