0 purchases
sweet title
Sweet Title #
Create a beautiful titles with Sweet Title, you can have a title with or without a button.
How To Use #
SweetTitle() #
title - Set title for Sweet Title. [required]
horizontalPadding - set a padding horizontally around the widget. Default is: 20.0
titleMargin - EdgeInsets margin around the widget. Default is: EdgeInsets.only(bottom: 20.0)
fontSize - font size of the title. Default is: 20.0
SweetTitle.button() #
title - Set title for Sweet Title. [required]
buttonText - Button Text. [required]
buttonOnPressed - onPress function for the button. [required]
horizontalPadding - set a padding horizontally around the widget. Default is: 20.0
titleMargin - EdgeInsets margin around the widget. Default is: EdgeInsets.only(bottom: 20.0)
buttonStyle - ElevatedButton Style.
buttonTextColor - color of the text inside ElevatedButton. [required]
fontSize - font size of the title. Default is: 20.0
Getting Started #
Add the dependency in pubspec.yaml:
dependencies:
...
sweet_title: ^0.0.3
copied to clipboard
Basic Usage #
Adding the widget with Title Only
SweetTitle.button(
title: 'Categories',
),
copied to clipboard
Adding the widget with Button
SweetTitle.button(
title: 'Categories',
buttonText: 'Explore',
buttonTextColor: Colors.black,
buttonOnPressed: () {
print('Explore button pressed');
},
buttonStyle: ElevatedButton.styleFrom(
onPrimary: kPrimaryColor,
textStyle: TextStyle(
fontSize: 15,
color: kWhiteColor,
fontWeight: FontWeight.bold,
),
primary: kTransparentColor,
shadowColor: kTransparentColor,
),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.