mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* fix(ios): opaque bars break ui layout * test(): change flat action bar tests * test(): revert test flat change test
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
import { EventData } from "tns-core-modules/data/observable";
|
|
import { TabView } from "tns-core-modules/ui/tab-view";
|
|
|
|
export function onLoaded(args: EventData) {
|
|
const tabView = <TabView>args.object;
|
|
tabView.ios.tabBar.translucent = false;
|
|
}
|