2025-06-18 17:24:21 +02:00

15 lines
308 B
Objective-C

#import <LegacyComponents/TGBackdropView.h>
#import "LegacyComponentsInternal.h"
@implementation TGBackdropView
+ (TGBackdropView *)viewWithLightNavigationBarStyle
{
TGBackdropView *view = [[TGBackdropView alloc] init];
view.backgroundColor = UIColorRGBA(0xf7f7f7, 1.0f);
return view;
}
@end