Commit 9eba57a4 by Hugo Delaunay Committed by GitHub

Should fix #218. (#219)

parent 071defcd
...@@ -73,7 +73,7 @@ static NSString *const CHANNEL_NAME = @"PonnamKarthik/fluttertoast"; ...@@ -73,7 +73,7 @@ static NSString *const CHANNEL_NAME = @"PonnamKarthik/fluttertoast";
NSNumber *fontSize = call.arguments[@"fontSize"]; NSNumber *fontSize = call.arguments[@"fontSize"];
if(fontSize == nil) { if(fontSize == nil) {
fontSize = 16.0; fontSize = @( 16.0 );
} }
CGFloat cgf = [fontSize doubleValue]; CGFloat cgf = [fontSize doubleValue];
int time = 1; int time = 1;
......
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