“Платорская горизонтальная линия” Ответ

Платорская горизонтальная линия

const Divider(
   thickness: 5, // thickness of the line
   indent: 20, // empty space to the leading edge of divider.
   endIndent: 20, // empty space to the trailing edge of the divider.
   color: Colors.black, // The color to use when painting the line.
   height: 20, // The divider's height extent.
 ),
Sore Serval

Flutter Line#

Container(
      color:Colors.white,
      child: (
        Row(
          children: <Widget>[
            Padding(
              padding: const EdgeInsets.all(8.0),
              child: Image(
                  height: 100,
                  width: 100,
                  image: NetworkImage("https://www.gstatic.com/webp/gallery/1.jpg"),
                ),
            ),
            Column(
              children: <Widget>[
                Text("Book Name"),
                Text("Author name"),

                Divider(
                  color: Colors.black,
                )
              ],
            )
          ],
        )
      ),
    ),
Bad Bear

Платорская горизонтальная линия


Divider(
	color: Colors.black
)
9jadev

Ответы похожие на “Платорская горизонтальная линия”

Вопросы похожие на “Платорская горизонтальная линия”

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

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

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