Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fluttertoast
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
songyanzhi
fluttertoast
Commits
b3a921f3
Commit
b3a921f3
authored
Feb 20, 2019
by
Karthik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
## [3.0.1]
* Release build failed fix * Multiline text android fix
parent
5df60dca
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
7 deletions
+11
-7
CHANGELOG.md
+5
-0
README.md
+1
-1
android/build.gradle
+3
-3
android/src/main/java/io/github/ponnamkarthik/toast/fluttertoast/FluttertoastPlugin.java
+0
-1
example/android/app/build.gradle
+1
-1
pubspec.yaml
+1
-1
No files found.
CHANGELOG.md
View file @
b3a921f3
## [3.0.1]
*
Release build failed fix
*
Multiline text android fix
## [3.0.0]
*
Migrated to AndroidX
...
...
README.md
View file @
b3a921f3
...
...
@@ -13,7 +13,7 @@ If you dont want to use androidx then use `fluttertoast` version `2.2.12`
```
yaml
# add this line to your dependencies
fluttertoast
:
^3.0.
0
fluttertoast
:
^3.0.
1
```
```
dart
...
...
android/build.gradle
View file @
b3a921f3
...
...
@@ -22,7 +22,7 @@ rootProject.allprojects {
apply
plugin:
'com.android.library'
android
{
compileSdkVersion
2
7
compileSdkVersion
2
8
defaultConfig
{
minSdkVersion
16
...
...
@@ -34,6 +34,6 @@ android {
}
dependencies
{
implementation
'androidx.appcompat:appcompat:1.
0.0-beta01
'
implementation
'androidx.core:core:1.
0.0-beta01
'
implementation
'androidx.appcompat:appcompat:1.
1.0-alpha02
'
implementation
'androidx.core:core:1.
1.0-alpha04
'
}
android/src/main/java/io/github/ponnamkarthik/toast/fluttertoast/FluttertoastPlugin.java
View file @
b3a921f3
...
...
@@ -85,7 +85,6 @@ public class FluttertoastPlugin implements MethodCallHandler {
final
TextView
text
=
toast
.
getView
().
findViewById
(
android
.
R
.
id
.
message
);
if
(
textSize
!=
null
)
text
.
setTextSize
(
textSize
.
floatValue
());
text
.
setMaxLines
(
1
);
if
(
bgcolor
!=
null
)
{
...
...
example/android/app/build.gradle
View file @
b3a921f3
...
...
@@ -58,6 +58,6 @@ dependencies {
testImplementation
'junit:junit:4.12'
androidTestImplementation
'androidx.test:runner:1.1.2-alpha01'
androidTestImplementation
'androidx.test.espresso:espresso-core:3.1.2-alpha01'
implementation
'androidx.appcompat:appcompat:1.
0.
2'
implementation
'androidx.appcompat:appcompat:1.
1.0-alpha0
2'
implementation
'androidx.legacy:legacy-support-v4:1.0.0'
}
pubspec.yaml
View file @
b3a921f3
name
:
fluttertoast
description
:
Toast Library for FLutter
version
:
3.0.
0
version
:
3.0.
1
author
:
Karthik Ponnam <ponnamkarthik3@gmail.com>
homepage
:
https://github.com/PonnamKarthik/FlutterToast
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment