Commit 019fcc2c by zhaoya

Fix Number Cast Error for issue#35.

Signed-off-by: zhaoya <zhaoya188@qq.com>
parent f9b6c6bd
......@@ -37,8 +37,8 @@ public class FluttertoastPlugin implements MethodCallHandler {
String msg = call.argument("msg").toString();
String length = call.argument("length").toString();
String gravity = call.argument("gravity").toString();
Long bgcolor = call.argument("bgcolor");
Long textcolor = call.argument("textcolor");
Number bgcolor = call.argument("bgcolor");
Number textcolor = call.argument("textcolor");
Toast toast = Toast.makeText(ctx, msg, Toast.LENGTH_SHORT);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment