buildLandscapeLayout method
构建横屏布局
Implementation
Widget buildLandscapeLayout() {
return Stack(
children: [
// 非浮动组件使用Row布局
buildNonFloatingLandscapeLayout(),
// 浮动组件使用Positioned
...buildFloatingComponents(),
],
);
}