flutter_button_type 0.0.2 copy "flutter_button_type: ^0.0.2" to clipboard
flutter_button_type: ^0.0.2 copied to clipboard

A new Flutter package project.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_button_type/flutter_button_type.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Buttons Example'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);
  final String title;
  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    final _size = MediaQuery.of(context).size;
    final _height = _size.height;

    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
        elevation: 0.0,
      ),
      body: Padding(
        padding: const EdgeInsets.all(8.0),
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.stretch,
          children: <Widget>[
            Container(
              width: 300,
            ),
            FlutterTextButton(
              buttonText: 'Text Button',
              buttonHeight: _height * 0.2,
              onTap: () {},
            ),
            SizedBox(height: _height * 0.02),
            FlutterCircleButton(
              buttonColor: Colors.pink,
              buttonBorderColor: Colors.transparent,
              buttonIcon: const Icon(
                Icons.camera_alt,
                size: 60,
              ),
              onTap: () {},
            ),
            SizedBox(height: _height * 0.02),
            FlutterIconButton(
              buttonText: 'Take Picture',
              buttonColor: Colors.green,
              buttonIcon: const Icon(Icons.camera_alt),
              onTap: () {},
            ),
            SizedBox(height: _height * 0.02),
            FlutterOutlineIconButton(
              buttonText: 'Take Picture',
              buttonIcon: const Icon(Icons.camera_alt),
              onTap: () {},
            ),
            SizedBox(height: _height * 0.02),
            FlutterCircleButton(
              buttonIcon: const Icon(Icons.camera_alt),
              onTap: () {},
            ),
            SizedBox(height: _height * 0.02),
          ],
        ),
      ),
    );
  }
}
copied to clipboard
1
likes
70
points
30
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.18 - 2025.04.02

A new Flutter package project.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_button_type