enrecipes/app/components/modal/ConfirmDialog.vue
2020-10-24 23:32:35 +05:30

37 lines
907 B
Vue

<template>
<Page>
<StackLayout class="dialogContainer" :class="isLightMode">
<Label class="dialogTitle orkm" :text="title" />
<Label class="dialogDescription" :text="description" textWrap="true" />
<StackLayout
orientation="horizontal"
class="actionsContainer"
horizontalAlignment="right"
>
<Label
class="action orkm"
:text="cancelButtonText"
@tap="$modal.close(false)"
/>
<Label
class="action orkm"
:text="okButtonText"
@tap="$modal.close(true)"
/>
</StackLayout>
</StackLayout>
</Page>
</template>
<script>
import { Application } from "@nativescript/core"
export default {
props: ["title", "description", "cancelButtonText", "okButtonText"],
computed: {
isLightMode() {
return Application.systemAppearance()
},
},
}
</script>