We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cd2892 commit 4c15c76Copy full SHA for 4c15c76
ios/Classes/FluttertoastPlugin.m
@@ -38,11 +38,7 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result
38
NSString *durationTime = call.arguments[@"time"];
39
NSNumber *bgcolor = call.arguments[@"bgcolor"];
40
NSNumber *textcolor = call.arguments[@"textcolor"];
41
-
42
- NSLog(@"BG %d", bgcolor);
43
- NSLog(@"TC %d", textcolor);
44
45
46
int time = 1;
47
@try {
48
time = [durationTime intValue];
lib/fluttertoast.dart
@@ -35,9 +35,6 @@ class Fluttertoast {
35
gravityToast = "bottom";
36
}
37
- print(backgroundColor);
- print(textColor);
if(backgroundColor == null && defaultTargetPlatform == TargetPlatform.iOS) {
backgroundColor = Colors.black;
0 commit comments