“Круглый контейнер трепет” Ответ

трепетание контейнер с округлыми углами

Container(
  decoration: BoxDecoration(
    border: Border.all(
      color: Colors.red[500],
    ),
    borderRadius: BorderRadius.all(Radius.circular(20))
  ),
  child: ...
)
Evil Eel

трепетание круглым контейнером

QUESTION: Flutter give container rounded border

ANSWER1: 

Container(
    decoration: BoxDecoration(
    shape: BoxShape.circle,
    ),
    child:   ...
    ),

ANSWER 2:
Container(
  decoration: BoxDecoration(
    border: Border.all(
      color: Colors.red[500],
    ),
    borderRadius: BorderRadius.all(Radius.circular(20))
  ),
  child: ...
)
Bole

Круглый контейнер трепет

Container(
      width: screenWidth / 7,
      decoration: BoxDecoration(
        border: Border.all(
          color: Colors.red[500],
        ),
      ),
      child: Padding(
        padding: EdgeInsets.all(5.0),
        child: Column(
          children: <Widget>[
            Text(
              '6',
              style: TextStyle(
                  color: Colors.red[500],
                  fontSize: 25),
            ),
            Text(
             'sep',
              style: TextStyle(
                  color: Colors.red[500]),
            )
          ],
        ),
      ),
    );
Grotesque Gerenuk

Круглая граница контейнера в трепете

decoration: InputDecoration(
    contentPadding: const EdgeInsets.all(8.0),
    border: OutlineInputBorder(
        borderRadius: BorderRadius.circular(5.0),
    ),
    hintText: "0",
),
Sanjay Singh

Ответы похожие на “Круглый контейнер трепет”

Вопросы похожие на “Круглый контейнер трепет”

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

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

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