Skip to content

Commit 16ed0f4

Browse files
authored
feat: photo_date_screen.dart 파일 추가 (#56)
* feat: photo_date_screen.dart 파일 추가
1 parent 6db6211 commit 16ed0f4

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import 'package:flutter/material.dart';
2+
import 'package:ongi/core/app_light_background.dart';
3+
import 'package:ongi/core/app_colors.dart';
4+
5+
class PhotoDateScreen extends StatefulWidget {
6+
const PhotoDateScreen({super.key});
7+
8+
@override
9+
State<PhotoDateScreen> createState() => _PhotoDateScreenState();
10+
}
11+
12+
class _PhotoDateScreenState extends State<PhotoDateScreen> {
13+
@override
14+
Widget build(BuildContext context) {
15+
return Scaffold(
16+
backgroundColor: Colors.transparent,
17+
body: AppLightBackground(
18+
child: Padding(padding: const EdgeInsets.all(24)),
19+
),
20+
);
21+
}
22+
}

0 commit comments

Comments
 (0)