24 lines
476 B
Objective-C
24 lines
476 B
Objective-C
//
|
|
// XplanFBFlutterViewContainer.m
|
|
// PlanetStar
|
|
//
|
|
// Created by 冯硕 on 2021/3/30.
|
|
//
|
|
|
|
#import "XplanFBFlutterViewContainer.h"
|
|
#import "ThemeColor.h"
|
|
|
|
@interface XplanFBFlutterViewContainer ()
|
|
|
|
@end
|
|
|
|
@implementation XplanFBFlutterViewContainer
|
|
|
|
- (void)viewWillAppear:(BOOL)animated {
|
|
[super viewWillAppear:animated];
|
|
self.view.backgroundColor = [ThemeColor appBackgroundColor];
|
|
[self.navigationController setNavigationBarHidden:YES animated:YES];
|
|
}
|
|
|
|
@end
|