Как мне центрировать текст по горизонтали в контейнере?

#flutter #dart #material-ui

#flutter #dart #материал-пользовательский интерфейс

Вопрос:

Я хотел бы знать, как центрировать текст по горизонтали в Flutter Я пробовал это с помощью виджета выравнивания раньше, и это не сработало. Теперь я попробовал это с помощью свойства TextAlign, и оно по-прежнему не работает. Вот код для полного контейнера:

 ```
Container(
            height: 150.0,
            padding: EdgeInsets.all(10),
            margin: EdgeInsets.all(10),
            decoration: BoxDecoration(
              borderRadius: BorderRadius.all(Radius.circular(20)),
              color: Colors.white10,
            ),
            child: Column(
              children: [
                Row(
                  children: [
                    Text(
                        'Coursename',
                        textAlign: TextAlign.center,
                        style: TextStyle(
                          fontSize: 20.0,
                          fontWeight: FontWeight.bold,
                          color: Colors.white,
                        ),
                      ),
                  ],
                ),
                Row(
                  children: [
                    Container(
                      padding: EdgeInsets.only(top: 10),
                      child: Text(
                        'Latest post or assignment by the teacher.',
                        style: TextStyle(fontSize: 12.0, color: Colors.white),
                      ),
                    ),
                  ],
                ),
              ],
            ),
          ),
```
 

Ниже приведен скриншот того, как приложение выглядит прямо сейчас.
Скриншот

Ответ №1:

Самый простой способ сделать это — использовать

 Align(
  alignment: Alignment.center, // Align however you like (i.e .centerRight, centerLeft)
  child: Text("This is what I wanted to center"),
),
 

Редактировать:

Это даже центрирует вертикально

 child: Center(
        child: Text(
          "this is what I center",
          textAlign: TextAlign.center,
        ),
      ),
 

Комментарии:

1. Я хочу центрировать текст по горизонтали, а не по вертикали

Ответ №2:

Вы можете использовать центр и добавить свой элемент в качестве дочернего элемента центра.

Мне удалось достичь того, что вам нужно, с помощью смешанного решения Center() и TextAlign. Они ведут себя по-разному в зависимости от их родителей. Однако вот текстовая версия вашего кода с центрированным текстом.

 Container(
        height: 150.0,
        padding: EdgeInsets.all(10),
        margin: EdgeInsets.all(10),
        decoration: BoxDecoration(
          borderRadius: BorderRadius.all(Radius.circular(20)),
          color: Colors.blue,
        ),
        child: Center( 
          child:Column(
            children: [
                Center( 
                  child: Text(
                    'Coursename',
                    textAlign: TextAlign.center,
                    style: TextStyle(
                      fontSize: 20.0,
                      fontWeight: FontWeight.bold,
                      color: Colors.black,
                    ),
                  ),
                ), //Center
              
                Container(
                  padding: EdgeInsets.only(top: 10),
                  child: Center(
                    child: Column( 
                      children: [
                        Center( 
                          child:Text(
                            'Latest post or assignment by the teacher.',
                            textAlign: TextAlign.center,
                            style: TextStyle(fontSize: 12.0, color:                                         Colors.black),
                          ),
                        ), //Center
                      ], 
                    ),
                ), //Center
               ),
            ],
          ),
        ), //Center
      ),
 

Комментарии:

1. Это, к сожалению, не сработало для меня, поскольку положение текста осталось прежним

Ответ №3:

Вы можете скопировать вставить запустить полный код ниже
Вы можете Row использовать mainAxisAlignment: MainAxisAlignment.center
фрагмент кода

 Row(
      mainAxisAlignment: MainAxisAlignment.center,
      children: [
        Text(
          'Coursename',
 

рабочая демонстрация

введите описание изображения здесь

полный код

 import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.black,
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Container(
        height: 150.0,
        padding: EdgeInsets.all(10),
        margin: EdgeInsets.all(10),
        decoration: BoxDecoration(
          borderRadius: BorderRadius.all(Radius.circular(20)),
          color: Colors.white10,
        ),
        child: Column(
          children: [
            Row(
              mainAxisAlignment: MainAxisAlignment.center,
              children: [
                Text(
                  'Coursename',
                  textAlign: TextAlign.center,
                  style: TextStyle(
                    fontSize: 20.0,
                    fontWeight: FontWeight.bold,
                    color: Colors.white,
                  ),
                ),
              ],
            ),
            Row(
              mainAxisAlignment: MainAxisAlignment.center,
              children: [
                Container(
                  padding: EdgeInsets.only(top: 10),
                  child: Text(
                    'Latest post or assignment by the teacher.',
                    style: TextStyle(fontSize: 12.0, color: Colors.white),
                  ),
                ),
              ],
            ),
          ],
        ),
      ),
    );
  }
}