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 {
647647}
648648
649649- (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);
650657}
651658
652659@end
Original file line number Diff line number Diff line change @@ -579,7 +579,7 @@ - (UIColor *)colorFromHexString:(NSString *)hexString {
579579 return [UIColor blackColor ];
580580}
581581
582- - (void )setFullscreenIsFullscreen : (NSNumber *)isFullscreen error : (FlutterError *_Nullable *_Nonnull)error {
582+ - (void )setFullscreenIsEnabled : (NSNumber *)isEnabled error : (FlutterError *_Nullable *_Nonnull)error {
583583 // Empty implementation as requested
584584}
585585
You can’t perform that action at this time.
0 commit comments