This is the design I want to create here you can see the "Sign In" Text is a button. I want to create a TextButton in flutterFlow, but I can't see any widget in flutterFlow for a TextButton. There is only an option for the Button widget if you add the Button widget it also has a background Color. There is one option I know that I only added a button widget and made it transparent. What do you recommend for best practice?
Here is the result of what I made

How to add TextButton in FlutterFlow
329 Views Asked by Tasadduq Hussain At
2
There are 2 best solutions below
0
On
You can use a Text widget.
Row( Children[ Text("Already Have an account?"),
Text("Sign In") //add onTap action on this text and it will behave as a text button.
click on the Text widget, go to actions, click add action. and add your required action, it you case it may be. Navigate to Login Page. ] )

In this case I would add a Row with two children. a Text widget and another Text widget that is styled as you have shown.
Then add a onTap Action to the second Text widget.