🧩TextButton()

// Some code
TextButton(
          onPressed: () {},
          child: const Text(
            'Зарегистрироваться',
            style: TextStyle(
                fontSize: 30,
                fontWeight: FontWeight.bold,
                color: Colors.indigo),
          ),
        ),

Last updated