- A great flutter and efficacious package for an aesthetic text hover effect
Usage
To use this package, add text_hover as a dependency in your pubspec.yaml file.
Demo
Example
- Import the library
import 'package:text_hover/text_hover.dart';
- In order to use this package, we just need to give the
TextHoverwidget a text with a config. Configis used to configure the hover effect and hasduration,letterWidth,hoverColor,textColor,duration,expandproperties
TextHover(
text: 'Aesthetic',
config: Config(
hoverColor: Colors.orangeAccent
),
)
Documentation
TextHover properties
| Name | Type | Default | Description |
|---|---|---|---|
| text | String |
required | the text to apply the hover effect on |
| config | Config |
required | configuration of the hover effect |
Now enjoy!
Refer to example folder and the source code for more information.
Acknowledgement
- I would like to thank David Philips Philip Davis for the inspiration for this library, which I think will be useful for Flutter community.
