-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add TopSectionImage widget separated and folder to AdvantagesS…
…ection
- Loading branch information
1 parent
2faeadc
commit 27fe1fe
Showing
4 changed files
with
17 additions
and
14 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
File renamed without changes.
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
15 changes: 15 additions & 0 deletions
15
lib/app/pages/home/widgets/sections/top_section_image.dart
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,15 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
import 'package:fludemy/app/core/values/app_assets.dart'; | ||
|
||
class TopSectionImage extends StatelessWidget { | ||
const TopSectionImage({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Image.asset( | ||
AppAssets.app, | ||
fit: BoxFit.cover, | ||
); | ||
} | ||
} |