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
cb888fdd
Commit
cb888fdd
authored
Nov 23, 2020
by
Karthik Ponnam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
7.1.4
parent
f01d6b87
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
4 deletions
+8
-4
CHANGELOG.md
+4
-0
README.md
+1
-1
android/src/main/kotlin/io/github/ponnamkarthik/toast/fluttertoast/MethodCallHandlerImpl.kt
+1
-1
example/pubspec.lock
+1
-1
pubspec.yaml
+1
-1
No files found.
CHANGELOG.md
View file @
cb888fdd
## [7.1.4]
-
minor fixes
## [7.1.3]
## [7.1.3]
-
Android Default bg when fontSize or textColor set fixed
-
Android Default bg when fontSize or textColor set fixed
...
...
README.md
View file @
cb888fdd
...
@@ -34,7 +34,7 @@ This one has limited features and no control over UI
...
@@ -34,7 +34,7 @@ This one has limited features and no control over UI
```
yaml
```
yaml
# add this line to your dependencies
# add this line to your dependencies
fluttertoast
:
^7.1.
1
fluttertoast
:
^7.1.
4
```
```
```
dart
```
dart
...
...
android/src/main/kotlin/io/github/ponnamkarthik/toast/fluttertoast/MethodCallHandlerImpl.kt
View file @
cb888fdd
...
@@ -63,7 +63,7 @@ internal class MethodCallHandlerImpl(var context: Context) : MethodCallHandler {
...
@@ -63,7 +63,7 @@ internal class MethodCallHandlerImpl(var context: Context) : MethodCallHandler {
mToast
.
view
=
layout
mToast
.
view
=
layout
}
else
{
}
else
{
mToast
=
Toast
.
makeText
(
context
,
mMessage
,
mDuration
)
mToast
=
Toast
.
makeText
(
context
,
mMessage
,
mDuration
)
val
textView
:
TextView
=
mToast
.
view
.
findViewById
(
android
.
R
.
id
.
message
)
val
textView
:
TextView
=
mToast
.
view
!!
.
findViewById
(
android
.
R
.
id
.
message
)
if
(
textSize
!=
null
)
{
if
(
textSize
!=
null
)
{
textView
.
textSize
=
textSize
.
toFloat
()
textView
.
textSize
=
textSize
.
toFloat
()
}
}
...
...
example/pubspec.lock
View file @
cb888fdd
...
@@ -78,7 +78,7 @@ packages:
...
@@ -78,7 +78,7 @@ packages:
path: ".."
path: ".."
relative: true
relative: true
source: path
source: path
version: "7.1.
3
"
version: "7.1.
4
"
js:
js:
dependency: transitive
dependency: transitive
description:
description:
...
...
pubspec.yaml
View file @
cb888fdd
name
:
fluttertoast
name
:
fluttertoast
description
:
Toast Library for Flutter, Easily create toast messages in single line of code
description
:
Toast Library for Flutter, Easily create toast messages in single line of code
version
:
7.1.
3
version
:
7.1.
4
homepage
:
https://github.com/PonnamKarthik/FlutterToast
homepage
:
https://github.com/PonnamKarthik/FlutterToast
issue_tracker
:
https://github.com/ponnamkarthik/FlutterToast/issues
issue_tracker
:
https://github.com/ponnamkarthik/FlutterToast/issues
...
...
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