Flutter

Flutter para torpes (Clase 4) Textos

  • Este debate tiene 0 respuestas, 1 mensaje y ha sido actualizado por última vez el hace 3 años por admin.
Mostrando 0 respuestas a los debates
  • Autor
    Entradas
    • #6895
      admin
      Superadministrador
      Up
      3
      Down
      ::

      En este ejemplo jugaremos con las distintas propiedades del Text y del TextStyle

      import 'package:flutter/material.dart';
      
      class Pantalla extends StatelessWidget {
        @override
        Widget build(BuildContext context) {
          return MaterialApp(
            home: Center(
              child: Text(
                'un texto ',
                style: TextStyle(
                  color: Colors.amber,
                  fontSize: 44,
                  fontWeight: FontWeight.w100,
                  fontStyle: FontStyle.italic,
                  decoration: TextDecoration.overline,
                  decorationStyle: TextDecorationStyle.dashed,
                  decorationColor: Colors.green,
                  decorationThickness: 3,
                  backgroundColor: Colors.pink,
                  shadows: [
                    Shadow(
                      color: Colors.white,
                      offset: Offset(2, 2),
                      blurRadius: 3,
                    )
                  ],
                  height: 1.5,
                ),
              ),
            ),
          );
        }
      }
      
      void main() {
        runApp(Pantalla());
      }
      

      textos en flutter

Mostrando 0 respuestas a los debates
  • Debes estar registrado para responder a este debate.