水平滚动布局(hScroll)

水平滚动布局

水平滚动布局(hScroll),当子控件宽度超过容器宽度时,可以左右滑动查看剩余控件。注意子控件只能有一个,不能超过一个。
<template> <hScroll> <linear orientation="horizontal"> <text text="控件1" width="400"/> <button text="确认1" width="400"/> <text text="控件2"/> <button text="确认2"/> </linear> </hScroll> </template>