We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e707f3e commit e15f5b8Copy full SHA for e15f5b8
demo-snippets/vue/Mixins.vue
@@ -4,11 +4,11 @@
4
<NavigationButton text="Back" android.systemIcon="ic_menu_back" @tap="onNavigationButtonTap"></NavigationButton>
5
</ActionBar>
6
<StackLayout>
7
- <StackLayout backgroundColor="yellow" elevation="10" dynamicElevationOffset="3">
8
- <Button margin="10" elevation="5" rippleColor="red" backgroundColor="green" borderRadius="10" fontSize="20" text="elevated button" @tap="onButtonTap" />
+ <StackLayout backgroundColor="pink" elevation="10" dynamicElevationOffset="3">
+ <Button margin="10" elevation="5" rippleColor="red" backgroundColor="green" borderRadius="50%" fontSize="20" text="elevated button" @tap="onButtonTap" id="button" />
9
<Button margin="10" rippleColor="red" fontSize="20" text="elevated button" />
10
- <Label margin="10" horizontalAlignment="center" backgroundColor="yellow" padding="10" elevation="1" borderRadius="20" rippleColor="red" text="elevated text" />
11
- <Label margin="10" horizontalAlignment="center" padding="10" backgroundColor="yellow" dynamicElevationOffset="3" elevation="1" rippleColor="red" text="elevated text" />
+ <Label margin="10" horizontalAlignment="center" backgroundColor="yellow" padding="10" elevation="1" dynamicElevationOffset="3" rippleColor="red" text="elevated text" borderRadius="50% 10% 4 0" borderWidth="1" borderColor="blue" id="label"/>
+ <Label margin="10" horizontalAlignment="center" padding="10" backgroundColor="yellow" dynamicElevationOffset="3" elevation="1" rippleColor="red" text="elevated text" borderRadius="20"/>
12
<StackLayout class="cardView" height="100" orientation="horizontal">
13
<Label width="100%" textAlignment="center" verticalAlignment="center" text="elevated text" />
14
</StackLayout>
demo-snippets/vue/Ripples.vue
@@ -4,8 +4,8 @@
- <MDRipple backgroundColor="gray" rippleColor="green" width="100" height="100" @tap="onTap"/>
- <MDRipple width="100" height="100" rippleColor="green" borderRadius="50%" @tap="onTap"/>
+ <MDRipple backgroundColor="gray" rippleColor="green" width="100" height="100" @tap="onTap" horizontalAlignment="left"/>
+ <MDRipple width="100" height="100" rippleColor="green" borderRadius="50%" @tap="onTap" horizontalAlignment="left"/>
</Page>
</template>
demo-snippets/vue/install.ts
@@ -75,6 +75,7 @@ export function installPlugin() {
75
}
76
77
export const demos = [
78
+ { name: 'Mixins', path: 'Mixins', component: Mixins },
79
{ name: 'ActivityIndicators', path: 'ActivityIndicators', component: ActivityIndicators },
80
{ name: 'BottomNavigationBar', path: 'BottomNavigationBar', component: BottomNavigationBar },
81
{ name: 'BottomNavigation', path: 'BottomNavigation', component: BottomNavigation },
@@ -89,6 +90,5 @@ export const demos = [
89
90
{ name: 'TextViews', path: 'TextViews', component: TextViews },
91
{ name: 'BottomSheet', path: 'BottomSheet', component: BottomSheet },
92
{ name: 'SpeedDial', path: 'SpeedDial', component: SpeedDial },
- { name: 'Tabs', path: 'Tabs', component: Tabs },
93
- { name: 'Mixins', path: 'Mixins', component: Mixins }
+ { name: 'Tabs', path: 'Tabs', component: Tabs }
94
];
0 commit comments