-
Notifications
You must be signed in to change notification settings - Fork 2
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
xjyribro
committed
Apr 17, 2024
1 parent
7bd88d2
commit 6b24f57
Showing
10 changed files
with
143 additions
and
69 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,29 @@ | ||
class LandingPageHeaders{ | ||
static const String welcome = 'Welcome to Gomiland'; | ||
static const String collectRubbish = 'Collect rubbish from the streets'; | ||
static const String sortRubbish = 'Sort them in a fun way'; | ||
static const String helpResidents = 'Help out your fellow residents'; | ||
static const String welcome = 'Welcome to Gomiland!'; | ||
static const String visitPark = 'Visit the National Park'; | ||
static const String sortRubbish = 'Sort rubbish in a fun way'; | ||
static const String helpResidents = 'Help out the residents'; | ||
static const String learnSustainability = 'Learn about sustainable cities'; | ||
} | ||
|
||
class LandingPageContent{ | ||
static const String welcome = 'Gomiland is '; | ||
static const String collectRubbish = ''; | ||
static const String sortRubbish = ''; | ||
static const String helpResidents = 'Some of the residents in town need assistance like Mr Stark!. '; | ||
static const String learnSustainability = 'Explore the different parts of Gomiland. Read the signs to learn how they contribute to sustainability. Talk to '; | ||
static const String welcome = 'Gomiland is a bustling, sustainable city and home to over 100 people. ' | ||
'Join the residents in their quest to achieve zero-waste by picking up and sorting rubbish.\n\n' | ||
'Rubbish can be found in all sorts of places. Under trees, around buildings, along paths and on the sidewalks.\n\n' | ||
'Movement: Use the joystick for mobile, "wasd" keys for web.\n' | ||
'Interact: Virtual button for mobile, "e" key for web.'; | ||
static const String visitPark = 'Gomiland National Park is home to many protected species of flora and fauna. The residents love strolling about here and you would too!\n\n' | ||
'Find points-of-interests like the World Forest, Bee Colony, Castle grounds and Bamboo Forest Shrine.\n\n' | ||
'Bonus: It\'s Sakura season in a few days. Be sure to find a nice spot to take pictures and enjoy the beautiful sight!'; | ||
static const String sortRubbish = 'The city has given you 6 bins to throw your rubbish.\n\n' | ||
'Learn about the materials each item is made of, then start sorting! \n\n' | ||
'Get coins for correct sorting and fines for incorrect sorting. Coins can buy useful items and objects for your zen garden!'; | ||
static const String helpResidents = 'Some of the residents in town need assistance.\n\n' | ||
'Use your map to locate people needing help. Mr Stark here needs materials for his construction. ' | ||
'His machines will appear and start building when you collect enough recyclables!\n\n' | ||
'Bonus: Complete all the quests to erect the eco-warrior statue on the Castle Grounds.'; | ||
static const String learnSustainability = 'Explore different parts of Gomiland to understand how the city achieves sustainability.\n\n' | ||
'Read the signs to learn about each location. ' | ||
'Talk to residents to get more tips on how you can be more environmentally friendly. ' | ||
'Get ideas on how you can incorporate steps to contribute to sustainability in your city and daily life!'; | ||
} |
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
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
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
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
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,17 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:gomiland/assets.dart'; | ||
|
||
class GomilandLogo extends StatelessWidget{ | ||
const GomilandLogo({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Padding( | ||
padding: const EdgeInsets.all(4.0), | ||
child: Image.asset( | ||
Assets.assets_images_logo_gomiland_simple_png, | ||
height: 164, | ||
), | ||
); | ||
} | ||
} |
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
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