You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I wanted to fill up the waves with a parameter for the TextLiquidFill widget, which is not possible.
Describe the solution you'd like
Add a percentage parameter on the TextLiquidFill
(After looking at your source code, i think it would be as simple as to replace
text_liquid_fill.dart:130 percentValue: _loadValue.value,
to
text_liquid_fill.dart:130 percentValue: _percentage ? percentage : _loadValue.value,
Thank you for your work on this package !
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I wanted to fill up the waves with a parameter for the TextLiquidFill widget, which is not possible.
Describe the solution you'd like
Add a
percentage
parameter on the TextLiquidFill(After looking at your source code, i think it would be as simple as to replace
text_liquid_fill.dart:130
percentValue: _loadValue.value,
to
text_liquid_fill.dart:130
percentValue: _percentage ? percentage : _loadValue.value,
Thank you for your work on this package !
The text was updated successfully, but these errors were encountered: