Skip to content

Commit

Permalink
Merge pull request #32 from UniBond-jijijin/feature/#6-UpdatePost
Browse files Browse the repository at this point in the history
#6 Feat: 글 수정화면 세팅
  • Loading branch information
Jinyshin authored Nov 19, 2023
2 parents a0e0c27 + bba56e3 commit d882712
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
1 change: 0 additions & 1 deletion unibond/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:unibond/screens/user/join_screen.dart';
import 'package:unibond/screens/home_screen.dart';

void main() {
Expand Down
22 changes: 22 additions & 0 deletions unibond/lib/screens/community/post_update_screen.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';

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

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: true,
title: const Text('게시물 수정'),
leading: IconButton(
icon: const Icon(Icons.arrow_back_ios),
onPressed: () {
Get.back();
},
),
),
);
}
}

0 comments on commit d882712

Please sign in to comment.