将一个容器对准屏幕的右侧,另一个对准屏幕的左侧。

问题描述 投票:1回答:1

我需要两个容器,一个在屏幕右侧,另一个在屏幕左侧。

home: Scaffold(
      backgroundColor: Colors.teal,
      body: SafeArea(
          child: Column(
        mainAxisAlignment: MainAxisAlignment.start,
        crossAxisAlignment: CrossAxisAlignment.end,
        children: <Widget>[
          Container(
            width: double.infinity,
          ),
          Expanded(
            child: Container(
              width: 100.00,
              color: Colors.red,
              child: Container(
                width: 100.00,
                color: Colors.blue,

目前,我有一个容器对准了屏幕的右侧。

child: Container(
              width: 100.00,
              color: Colors.red,

. 然而,我无法找到将第二个容器对齐到屏幕另一侧的方法。

child: Container(
                width: 100.00,
                color: Colors.blue,
flutter flutter-layout
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.