oneui_plus 0.0.2 oneui_plus: ^0.0.2 copied to clipboard
A Flutter package that aims to bring the elegant and modern design of Samsung's OneUI to your Flutter applications.
OneContainedButton #
Import #
import 'package:oneui_plus/oneui_plus.dart';
Usage #
OneContainedButton(
child: "Reload", // may be Widget or String
onPressed: ()=>someAction(), // action performed when button is clicked
backgroundColor: Colors.blueGrey, // button background color
contentColor: Colors.white, // color of text and icons in the button (if the child is String not Widget)
)