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 09bb63a commit 4798ea8Copy full SHA for 4798ea8
demo-snippets/vue/Ripples.vue
@@ -4,8 +4,8 @@
4
<NavigationButton text="Back" android.systemIcon="ic_menu_back" @tap="onNavigationButtonTap"></NavigationButton>
5
</ActionBar>
6
<StackLayout>
7
- <MDRipple backgroundColor="gray" rippleColor="green" width="100" height="100" borderRadius="10" />
8
- <MDRipple width="100" height="100" borderRadius="10" />
+ <MDRipple backgroundColor="gray" rippleColor="green" width="100" height="100" @tap="onTap"/>
+ <MDRipple width="100" height="100" rippleColor="green" borderRadius="50%" @tap="onTap"/>
9
</StackLayout>
10
</Page>
11
</template>
@@ -26,6 +26,7 @@ export default Vue.extend({
26
},
27
28
methods: {
29
+ onTap() {},
30
onNavigationButtonTap() {
31
frameModule.Frame.topmost().goBack();
32
}
0 commit comments