How To Set Max-height In Nativescript?
Here is my layout (It's a nativescript-vue app):
Solution 1:
Try,
<template><GridLayoutrows="auto,*,auto"><StackLayoutrow="0" /><ScrollViewrow="1"verticalAlignment="center"><StackLayout><slot /></StackLayout></ScrollView><StackLayoutrow="2" /></GridLayout></template>
I tested with Playground, it seems to give me the expected results.
Post a Comment for "How To Set Max-height In Nativescript?"