Skip to content

Commit

Permalink
💄 :: recommend_page 퍼블리싱
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveuhyeon committed Jul 8, 2024
1 parent f684eda commit 4b44499
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .dart_tool/package_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
"languageVersion": "3.4"
}
],
"generated": "2024-07-07T15:44:50.927936Z",
"generated": "2024-07-08T06:36:31.058319Z",
"generator": "pub",
"generatorVersion": "3.4.3",
"flutterRoot": "file:///opt/homebrew/Caskroom/flutter/3.22.2/flutter",
Expand Down
27 changes: 0 additions & 27 deletions lib/views/home_page.dart

This file was deleted.

24 changes: 24 additions & 0 deletions lib/views/recommend_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import 'package:flutter/material.dart';
import 'package:grapper/components/appbar.dart';

class RecommendPage extends StatelessWidget {
const RecommendPage({super.key});

@override
Widget build(BuildContext context) {
return const Scaffold(
body: SafeArea(
child: Padding(
padding: EdgeInsets.symmetric(horizontal: 20),
child: Column(
children: [
GrapperAppbar(
text: '테스트',
),
],
),
),
),
);
}
}

0 comments on commit 4b44499

Please sign in to comment.