🧩ElevatedButton()

// Some code
Column(
        mainAxisAlignment: MainAxisAlignment.spaceAround,
        children: [
          ElevatedButton(
            onPressed: () {},
            child: const Text('Button'),
          ),
          SizedBox(
            width: 300,
            height: 100,
            child: ElevatedButton(
              onPressed: () {},
              child: const Text('Big button'),
            ),
          ),
          SizedBox(
            height: 70,
            width: 350,
            child: ElevatedButton(
              onPressed: () {},
              style: ElevatedButton.styleFrom(backgroundColor: Colors.green),
              child: const Text('Change color'),
            ),
          )
        ],
      ),

Last updated