mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
feat(action-bar): iosLargeTitle and iosShadow attributes (#10694)
[skip ci]
This commit is contained in:
@ -10,7 +10,7 @@ Button {
|
||||
}
|
||||
.btn-view-demo {
|
||||
/* background-color: #65ADF1; */
|
||||
border-radius: 5;
|
||||
border-radius: 8;
|
||||
font-size: 17;
|
||||
padding: 15;
|
||||
font-weight: bold;
|
||||
|
@ -1,11 +1,11 @@
|
||||
<Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo" class="page">
|
||||
<Page.actionBar>
|
||||
<ActionBar title="Dev Toolbox" icon="" class="action-bar">
|
||||
<ActionBar title="Dev Toolbox" icon="" class="action-bar" iosLargeTitle="true" iosShadow="false">
|
||||
</ActionBar>
|
||||
</Page.actionBar>
|
||||
<StackLayout class="p-20">
|
||||
<StackLayout>
|
||||
<ScrollView class="h-full">
|
||||
<StackLayout>
|
||||
<StackLayout class="p-20" paddingBottom="40" iosOverflowSafeArea="false">
|
||||
<Button text="a11y" tap="{{ viewDemo }}" class="btn btn-primary btn-view-demo" />
|
||||
<Button text="box-shadow" tap="{{ viewDemo }}" class="btn btn-primary btn-view-demo" />
|
||||
<Button text="css-playground" tap="{{ viewDemo }}" class="btn btn-primary btn-view-demo" />
|
||||
|
@ -1,6 +1,9 @@
|
||||
<Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo" class="page">
|
||||
|
||||
<StackLayout>
|
||||
<Button text="Btoa y Atob" tap="encodeDecode" />
|
||||
<Page.actionBar>
|
||||
<ActionBar title="WinterTC" class="action-bar">
|
||||
</ActionBar>
|
||||
</Page.actionBar>
|
||||
<StackLayout>
|
||||
<Button text="Btoa y Atob" tap="encodeDecode" />
|
||||
</StackLayout>
|
||||
</Page>
|
||||
|
Reference in New Issue
Block a user