“Wyrównanie stosu w trzepot” Kod odpowiedzi

FUTRIGN Widżet w stosie

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

Wyrównanie stosu w trzepot

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

Odpowiedzi podobne do “Wyrównanie stosu w trzepot”

Pytania podobne do “Wyrównanie stosu w trzepot”

Więcej pokrewnych odpowiedzi na “Wyrównanie stosu w trzepot” w Dart

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu