developer_deck_package 0.0.1 copy "developer_deck_package: ^0.0.1" to clipboard
developer_deck_package: ^0.0.1 copied to clipboard

Developer Deck Package.

Developer Deck Package #

Create stylish custom sign-in buttons in Flutter effortlessly with our package! Simplify authentication UI. 💫

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  developer_deck_package: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:developer_deck_package/developer_deck_package.dart';

Example #

There are a number of properties that you can modify:

  • height
  • width
  • title
  • subtitle
  • gradient (color1 and color2)

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: const FancyContainer(
          title: 'Hello World',
          color1: Colors.lightGreenAccent,
          color2: Colors.lightBlue,
          subtitle: 'This is a new package',
        ),
      ),
    );
  }
}
![example_image.png](example%2Fexample_image.png)

Next Goals #

  • Add onTap for functions. Now, you can specify the onTap and specify a function.

  • Change font and color style for text. Change color by specifying textcolor and subtitlecolor properties.

  • Add more containers to the package.

1
likes
130
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

Developer Deck Package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, font_awesome_flutter

More

Packages that depend on developer_deck_package