-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from victoreronmosele/feature/update-ui
Update UI
- Loading branch information
Showing
61 changed files
with
5,689 additions
and
929 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
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 @@ | ||
extensions: |
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 |
---|---|---|
@@ -1,29 +1,39 @@ | ||
class AppStrings { | ||
static const String appTitle = 'Flutter Gradient Generator'; | ||
static final String appTitleNewLine = appTitle.replaceAll(' ', ' \n'); | ||
static const String copyGradientCode = 'Copy Gradient Code'; | ||
static const String gradientCodeCopied = 'Copied to Clipboard!'; | ||
static const String style = 'Style'; | ||
static const String linear = 'Linear'; | ||
static const String radial = 'Radial'; | ||
static const String colors = 'Colors'; | ||
static const String colorsAndStops = 'Colors & Stops'; | ||
static const String random = 'Random'; | ||
static const String direction = 'Direction'; | ||
static const String victorEronmosele = 'Victor Eronmosele'; | ||
static const String built = 'Built'; | ||
static const String by = 'by'; | ||
static const String tapToEdit = 'Tap to edit'; | ||
static const String enterInPercentage = 'Enter in %'; | ||
static const String sweep = 'Sweep'; | ||
static const String addColor = 'Add Color'; | ||
static const String deleteColor = 'Delete Color'; | ||
static const appTitle = 'Flutter Gradient Generator'; | ||
static const copyGradientCode = 'Copy Gradient Code'; | ||
static const gradientCodeCopied = 'Copied to Clipboard!'; | ||
static const style = 'Style'; | ||
static const linear = 'Linear'; | ||
static const radial = 'Radial'; | ||
static const colors = 'Colors'; | ||
static const colorsAndStops = 'Colors & Stops'; | ||
static const random = 'Random'; | ||
static const direction = 'Direction'; | ||
static const tapToEdit = 'Tap to edit'; | ||
static const enterInPercentage = 'Enter in %'; | ||
static const sweep = 'Sweep'; | ||
static const addColor = 'Add Color'; | ||
static const deleteColor = 'Delete Color'; | ||
static const github = 'GitHub'; | ||
static const builtBy = 'Built by'; | ||
static const victorEronmosele = 'Victor Eronmosele'; | ||
static const shareFeedback = 'Share Feedback'; | ||
static const samples = 'Samples'; | ||
static const chooseRandomGradient = 'Choose Random Gradient'; | ||
static const reportBug = 'Report Bug'; | ||
static const requestFeature = 'Request Feature'; | ||
static const giveFeedback = 'Give Feedback'; | ||
static const viewSourceCodeOnGitHub = 'View Source Code On GitHub'; | ||
static const downloadGradientAsImage = 'Download Gradient As Image'; | ||
|
||
/// URLs | ||
static const githubUrl = | ||
'https://github.com/victoreronmosele/flutter_gradient_generator'; | ||
static const personalWebsiteUrl = 'http://victoreronmosele.com/'; | ||
|
||
/// Firebase Analytics | ||
static const gradientGeneratedFirebaseAnalyticsKey = 'gradientGenerated'; | ||
static const bugReportUrl = | ||
'$githubUrl/issues/new?assignees=&labels=&projects=&template=bug_report.md&title='; | ||
static const featureRequestUrl = | ||
'$githubUrl/issues/new?assignees=&labels=&projects=&template=feature_request.md&title='; | ||
static const feedbackUrl = '$githubUrl/discussions/new?category=general'; | ||
static const victorEronmoseleWebsiteUrl = 'http://victoreronmosele.com/'; | ||
static const appWebsiteUrl = 'https://fluttergradientgenerator.com/'; | ||
} |
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
Oops, something went wrong.