File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
example/ios/InstabugTests Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -647,6 +647,13 @@ - (void)testSetThemeWithAllProperties {
647
647
}
648
648
649
649
- (void )testSetFullscreen {
650
+ NSNumber *isEnabled = @1 ;
651
+ FlutterError *error;
652
+
653
+ [self .api setFullscreenIsEnabled: isEnabled error: &error];
654
+
655
+ // Since this is an empty implementation, we just verify the method can be called without error
656
+ XCTAssertNil (error);
650
657
}
651
658
652
659
@end
Original file line number Diff line number Diff line change @@ -579,7 +579,7 @@ - (UIColor *)colorFromHexString:(NSString *)hexString {
579
579
return [UIColor blackColor ];
580
580
}
581
581
582
- - (void )setFullscreenIsFullscreen : (NSNumber *)isFullscreen error : (FlutterError *_Nullable *_Nonnull)error {
582
+ - (void )setFullscreenIsEnabled : (NSNumber *)isEnabled error : (FlutterError *_Nullable *_Nonnull)error {
583
583
// Empty implementation as requested
584
584
}
585
585
You can’t perform that action at this time.
0 commit comments