“выравнивание стека в трепете” Ответ

Flutter выравнивает виджет в стеке

Stack(
  children: <Widget>[      
    Positioned.fill(
      child: Align(
        alignment: Alignment.centerRight,
        child: ....                
      ),
    ),
  ],
),
Healthy Hummingbird

выравнивание стека в трепете

SizedBox(
  width: 250,
  height: 250,
  child: Stack(
    children: <Widget>[
      Container(
        width: 250,
        height: 250,
        color: Colors.white,
      ),
      Container(
        padding: const EdgeInsets.all(5.0),
        alignment: Alignment.bottomCenter,
        decoration: BoxDecoration(
          gradient: LinearGradient(
            begin: Alignment.topCenter,
            end: Alignment.bottomCenter,
            colors: <Color>[
              Colors.black.withAlpha(0),
              Colors.black12,
              Colors.black45
            ],
          ),
        ),
        child: const Text(
          'Foreground Text',
          style: TextStyle(color: Colors.white, fontSize: 20.0),
        ),
      ),
    ],
  ),
)
Strange Stag

Ответы похожие на “выравнивание стека в трепете”

Вопросы похожие на “выравнивание стека в трепете”

Больше похожих ответов на “выравнивание стека в трепете” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования