Есть ли способ правильно отобразить RichText для создания золотого теста?

Я попытался создать золотой тест с конкретным текстом для проверки, но когда экран содержит RichText, компонент не отображается правильно. Есть ли способ сделать это?

Изображение с текстом и RichText на одном экране - RichText неразборчиво

Scaffold(
  backgroundColor: CBColors.bgDarkColor,
  body: Column(
    children: <Widget>[
      Observer(
          builder: (_) => CBHeader(
                title: 'Minha Tela',
                subtitle: 'Aqui é um texto normal',
                isBgDarkColor: true,
                child: Center(
                  child: SingleChildScrollView(
                    child: Column(
                      mainAxisAlignment: MainAxisAlignment.center,
                      crossAxisAlignment: CrossAxisAlignment.center,
                      children: <Widget>[
                        RichText(
                            textAlign: TextAlign.center,
                            text: TextSpan(
                            text: 'Digite a senha de 4 dígitos',
                            style: TextStyle(
                                height: 2,
                                wordSpacing: 2,
                                fontWeight: FontWeight.bold,
                                fontSize: 20,
                                color: Colors.white,
                            ),
                            children: <TextSpan>[
                                TextSpan(
                                    text: 'para processeguir',
                                    style: TextStyle(
                                    fontWeight: FontWeight.normal,
                                    fontSize: 14,
                                    )),
                            ],
                            ),
                        ),
                      ],
                    ),
                  ),
                ),
              )),
    ],
  ),
);

заранее спасибо

0 ответов

Другие вопросы по тегам