“Flutter Bullet Point” Respostas de código

Flutter Bullet Point

Add "\u2022" infront of String
Lazurite

Lista de marcadores vibrar

Row(
      crossAxisAlignment: CrossAxisAlignment.start,
      children: [
        Transform.translate(
          offset: const Offset(0, -8),
          child: const Text(
            '•',
            style: TextStyle(fontSize: 30),
          ),
        ),
        const SizedBox(width: kSizeSmall),
        Expanded(
          child: Text(
            title,
            style: context.textTheme.bodyText1,
          ),
        ),
      ],
    );
Temo mahya

Adicionar pontos de bala no widget de texto Flutter

class DottedText extends Text {
  const DottedText(String data, {
    Key key,
    TextStyle style,
    TextAlign textAlign,
    TextDirection textDirection,
    Locale locale,
    bool softWrap,
    TextOverflow overflow,
    double textScaleFactor,
    int maxLines,
    String semanticsLabel,
  }) : super(
    '\u2022 $data',
    key: key,
    style: style,
    textAlign: textAlign,
    textDirection: textDirection,
    locale: locale,
    softWrap: softWrap,
    overflow: overflow,
    textScaleFactor: textScaleFactor,
    maxLines: maxLines,
    semanticsLabel: semanticsLabel,);
}
Terrible Teira

Respostas semelhantes a “Flutter Bullet Point”

Perguntas semelhantes a “Flutter Bullet Point”

Mais respostas relacionadas para “Flutter Bullet Point” em Dart

Procure respostas de código populares por idioma

Procurar outros idiomas de código