gradient_elevated_button 1.0.0 copy "gradient_elevated_button: ^1.0.0" to clipboard
gradient_elevated_button: ^1.0.0 copied to clipboard

Custom Flutter button with gradient background for visually appealing UI.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:gradient_elevated_button/gradient_elevated_button.dart';
import 'package:gradient_elevated_button/inherited/gradient_elevated_theme_data.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return GradientButtonThemeData(
      data: GradientElevatedButton.styleFrom(
        gradient: const LinearGradient(
          colors: [Colors.blue, Colors.green],
          begin: Alignment.centerLeft,
          end: Alignment.centerRight,
        ),
        foregroundColor: Colors.black,
      ),
      child: MaterialApp(
        debugShowCheckedModeBanner: false,
        title: 'Gradient Elevated Button',
        theme: ThemeData(
            primarySwatch: Colors.blue,
            colorScheme: const ColorScheme.light(
                primary: Color.fromARGB(255, 166, 206, 57),
                secondary: Color.fromARGB(255, 0, 175, 173)),
            elevatedButtonTheme: ElevatedButtonThemeData(
                style: GradientElevatedButton.styleFrom(
              gradient: const LinearGradient(
                colors: [
                  Color.fromARGB(255, 227, 17, 60),
                  Color.fromARGB(255, 0, 175, 173),
                ],
                begin: Alignment.topCenter,
                end: Alignment.bottomCenter,
              ),
              foregroundColor: Colors.red,
              side: const BorderSide(),
              shape: RoundedRectangleBorder(
                borderRadius: BorderRadius.circular(20),
              ),
              padding: const EdgeInsets.symmetric(vertical: 25, horizontal: 25),
            ))),
        home: const MyHomePage(),
      ),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({
    super.key,
  });
  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Gradient Elevated Button'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            GradientElevatedButton(
              onPressed: () {
                // 255, 166, 206, 57
              },
              style: GradientElevatedButton.styleFrom(
                gradient: const LinearGradient(
                  colors: [
                    Colors.red,
                    Colors.green,
                  ],
                  begin: Alignment.topCenter,
                  end: Alignment.bottomCenter,
                ),
                foregroundColor: Colors.white,
                shape: RoundedRectangleBorder(
                  borderRadius: BorderRadius.circular(50),
                ),
                padding:
                    const EdgeInsets.symmetric(vertical: 25, horizontal: 25),
              ),
              child:
                  const Text("This is Gradient Elevated Button style from UI"),
            ),
            const SizedBox(
              height: 50,
            ),
            GradientElevatedButton(
              onPressed: () {},
              child: const Text("This is Gradient Elevated Button From Theme"),
            ),
          ],
        ),
      ),
    );
  }
}
7
likes
160
pub points
84%
popularity

Publisher

unverified uploader

Custom Flutter button with gradient background for visually appealing UI.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on gradient_elevated_button