flutter_adaptive_buttons

Last updated:

0 purchases

flutter_adaptive_buttons Image
flutter_adaptive_buttons Images
Add to Cart

Description:

flutter adaptive buttons

flutter_adaptive_buttons #
A collection of Flutter widgets that adapt their appearance based on the platform and provide consistent button functionalities across different platforms.
Table of Contents #

Introduction
Features
Installation
Usage
Demo
Examples
Contributing
License

Introduction #
The flutter_adaptive_buttons package provides a set of widgets that adapt their appearance to the current platform. It enables you to create buttons that look and behave like native buttons on both Android and iOS platforms. The package includes different button types, such as ElevatedButton, TextButton, OutlinedButton, and IconButton, each with adaptive behavior and properties.
Features #

Adaptive appearance: Widgets automatically adjust their visual style based on the platform (Android or iOS).
Fine-grained control: Customize appearance and behavior for each platform separately.
Material and Cupertino themes: Use the native look or override with custom themes if needed.

Installation #
Add the package to your pubspec.yaml file:
dependencies:
flutter_adaptive_buttons: ^0.0.1
copied to clipboard
Or run this command with Flutter:
flutter pub add flutter_adaptive_buttons
copied to clipboard
Then, import the package:
import 'package:flutter_adaptive_buttons/flutter_adaptive_buttons.dart';
copied to clipboard
Usage #
The package provides several adaptive button widgets that you can use in your Flutter applications:

AdaptiveElevatedButton: An elevated button with adaptive appearance.
AdaptiveTextButton: A text button with adaptive appearance.
AdaptiveOutlinedButton: An outlined button with adaptive appearance.
AdaptiveIconButton: An icon button with adaptive appearance.

Also you can use the following widget to create adaptive buttons with icons.

AdaptiveElevatedButton.icon: An elevated button with an icon and adaptive appearance.
AdaptiveTextButton.icon: A text button with an icon and adaptive appearance.
AdaptiveOutlinedButton.icon: An outlined button with an icon and adaptive appearance.
AdaptiveIconButton.icon: An icon button with an icon and adaptive appearance.

Each widget adapts its appearance to the current platform (Android or iOS) and provides properties to customize its behavior for each platform individually.
Demo #
Check out the demo to see the Adaptive Buttons Widgets package in action.
Examples #
Here's a simple example of how to use the Adaptive Buttons:
AdaptiveElevatedButton
AdaptiveElevatedButton(
onPressed: () {},
child: const Text("ElevatedButton"),
),
AdaptiveElevatedButton.icon(
onPressed: () {},
icon: const Icon(Icons.notifications),
child: const Text("AdaptiveElevatedButton.icon"),
)
copied to clipboard
AdaptiveTextButton
AdaptiveTextButton(
onPressed: () {},
child: const Text("AdaptiveTextButton"),
),
AdaptiveTextButton.icon(
onPressed: () {},
icon: const Icon(Icons.notifications),
child: const Text("AdaptiveTextButton.icon"),
)
copied to clipboard
AdaptiveOutlinedButton
AdaptiveOutlinedButton(
onPressed: () {},
child: const Text("AdaptiveOutlinedButton"),
),
AdaptiveOutlinedButton.icon(
onPressed: () {},
icon: const Icon(Icons.notifications),
child: const Text("AdaptiveOutlinedButton.icon"),
)
copied to clipboard
Check out the example folder in this repository for more advanced usage scenarios and use cases for each adaptive button type.
Contributing #
Contributions are welcome! If you find a bug or have an idea for an enhancement, feel free to open an issue or submit a pull request on GitHub.
License #
This project is licensed under the MIT License - see the LICENSE file for details.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.