-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1173529
commit 0192897
Showing
4 changed files
with
101 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
part of 'store_page.dart'; | ||
|
||
class _StoreInfoBottom extends StatelessWidget { | ||
// ignore: unused_element | ||
const _StoreInfoBottom({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Text(""); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
part of 'store_page.dart'; | ||
|
||
class _StoreInfoHeader extends StatelessWidget { | ||
// ignore: unused_element | ||
const _StoreInfoHeader({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Column( | ||
crossAxisAlignment: CrossAxisAlignment.start, | ||
children: [ | ||
Stack( | ||
alignment: Alignment.bottomLeft, | ||
clipBehavior: Clip.none, | ||
children: [ | ||
Image.asset( | ||
"assets/images/store_info_header_example.png", | ||
width: 390.w, | ||
height: 235.h, | ||
fit: BoxFit.cover, | ||
), | ||
Positioned( | ||
bottom: -25.h, | ||
child: Container( | ||
width: 390.w, | ||
height: 50.h, | ||
decoration: BoxDecoration( | ||
borderRadius: BorderRadius.only( | ||
topLeft: Radius.circular(15.w), | ||
topRight: Radius.circular(15.w)), | ||
color: Colors.white), | ||
)), | ||
Positioned( | ||
left: 25.w, | ||
bottom: -25.h, | ||
child: Container( | ||
width: 100.w, | ||
height: 100.h, | ||
decoration: BoxDecoration( | ||
color: Colors.white, | ||
borderRadius: BorderRadius.circular(25.w), | ||
image: DecorationImage( | ||
image: AssetImage( | ||
"assets/images/store_info_logo_example.png"))), | ||
)) | ||
], | ||
), | ||
SizedBox( | ||
height: 30.h, | ||
), | ||
Padding( | ||
padding: EdgeInsets.symmetric(horizontal: 25.w), | ||
child: Column( | ||
crossAxisAlignment: CrossAxisAlignment.start, | ||
children: [ | ||
Text( | ||
"힘쎈드위치", | ||
style: AppTextStyle.heading2Bold, | ||
), | ||
Text( | ||
"광주광역시 동구 지산로 38", | ||
style: AppTextStyle.body2Medium | ||
.copyWith(color: GlobalMainGrey.grey700), | ||
) | ||
], | ||
)) | ||
], | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
part of 'store_page.dart'; | ||
|
||
class _StoreInfoMiddle extends StatelessWidget { | ||
// ignore: unused_element | ||
const _StoreInfoMiddle({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Text(""); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters