-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Added a new toast #476
Open
yahu1031
wants to merge
16
commits into
trunk
Choose a base branch
from
toast_fix
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
fc5ce72
feat: removed fluttertoast package
yahu1031 a1a4cc3
fix: Fix for #443
yahu1031 7e4518a
feat: Added a new toast in at_common_flutter
yahu1031 291ccf7
fix: exported toast
yahu1031 edeefac
feat: Toast in commons
yahu1031 48f834c
fix: made context non-nullable
yahu1031 3cc9167
fix: made context non-nullable
yahu1031 cf850ac
fix: made context non-nullable
yahu1031 4f52e27
fix: made context non-nullable
yahu1031 805808a
fix: made context non-nullable
yahu1031 afeb40a
fix: null context in at_location_flutter
yahu1031 d700e26
fix: missing null operator in at_location_flutter
yahu1031 0c883ae
fix: missing null operator in at_events_flutter
yahu1031 b2b7252
fix: removed flutter_toastr from at_contacts_group_flutter
yahu1031 e45f5f3
fix: checking if example fixes
yahu1031 00b57ca
fix: removes fluttertoast traces
yahu1031 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
|
||
import 'dart:io'; | ||
|
||
import 'package:flutter/material.dart'; | ||
|
||
class CustomToast { | ||
/// pass [isError] true to have a red bg, [isSuccess] true to have a green bg. | ||
static void show(String message, BuildContext context, | ||
{Color? bgColor, | ||
Color? textColor, | ||
double? toastWidth, | ||
double fontSize = 12, | ||
int duration = 3, | ||
double gravity = 10.0, | ||
bool isError = false, | ||
bool isSuccess = false}) { | ||
assert(!(isError && isSuccess), 'Both isError and isSuccess cannot be true'); | ||
assert(gravity >= 0, 'gravity cannot be less than 0'); | ||
ScaffoldMessenger.of(context).showSnackBar( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @yahu1031 we also have to assert that the given context has a ScaffoldMessenger ancestor. |
||
SnackBar( | ||
content: Text( | ||
message, | ||
textAlign: TextAlign.center, | ||
style: TextStyle( | ||
fontSize: fontSize, | ||
color: textColor ?? Colors.white, | ||
), | ||
), | ||
duration: const Duration(milliseconds: 3000), | ||
elevation: 0, | ||
margin: toastWidth != null | ||
? null | ||
: EdgeInsets.symmetric( | ||
horizontal: MediaQuery.of(context).size.width * 0.2, vertical: gravity), | ||
backgroundColor: isError | ||
? Colors.red | ||
: (isSuccess | ||
? Colors.green | ||
: (bgColor ?? const Color(0xA9FFFFFF))), | ||
padding: const EdgeInsets.all(10), | ||
width: toastWidth, | ||
behavior: SnackBarBehavior.floating, | ||
shape: RoundedRectangleBorder( | ||
borderRadius: | ||
BorderRadius.circular(Platform.isAndroid ? 50 : 10)), | ||
), | ||
); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yahu1031 I think we can have a
dismissDirection
property as well.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will add it.