Skip to content

Commit

Permalink
add: hero sectionに会場情報を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
YumNumm committed Sep 24, 2023
1 parent 4c8936e commit f8b30f4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
31 changes: 18 additions & 13 deletions lib/features/hero/ui/hero_section_desktop.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,24 +59,29 @@ class HeroSectionDesktop extends StatelessWidget {
],
),
),
Spaces.vertical_24,
FittedBox(
fit: BoxFit.scaleDown,
child: Padding(
padding: const EdgeInsets.symmetric(
vertical: 24,
),
child: Text(
'November 10, 2023',
style: GoogleFonts.poppins(
color: baselineColorScheme.white,
fontSize: 24,
fontWeight: FontWeight.w500,
height: 1.5,
letterSpacing: 0.16,
),
child: Text(
'November 10, 2023',
style: GoogleFonts.poppins(
color: baselineColorScheme.white,
fontSize: 24,
fontWeight: FontWeight.w500,
height: 1.5,
letterSpacing: 0.16,
),
),
),
Spaces.vertical_24,
FittedBox(
fit: BoxFit.scaleDown,
child: Text(
'in 株式会社ナビタイムジャパン',
style: textTheme.titleLarge,
),
),
Spaces.vertical_24,
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Text(
Expand Down
8 changes: 8 additions & 0 deletions lib/features/hero/ui/hero_section_mobile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ class HeroSectionMobile extends StatelessWidget {
),
),
Spaces.vertical_24,
FittedBox(
fit: BoxFit.scaleDown,
child: Text(
'in 株式会社ナビタイムジャパン',
style: textTheme.titleLarge,
),
),
Spaces.vertical_24,
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Text(
Expand Down

0 comments on commit f8b30f4

Please sign in to comment.