horizontal_text_line

Last updated:

0 purchases

horizontal_text_line Image
horizontal_text_line Images
Add to Cart

Description:

horizontal text line

Horizontal_Text_Line #
A simple flutter plugin to add text between a horizontal line
Screenshot #

Getting started #
Install using:
flutter pub add horizontal_text_line
Import it in your file:
import 'package:horizontal_text_line/horizontal_text_line';
Example Usage #
Widget _LoginButtons(){
return Column(
children: [
ElevatedButton(onPressed: (){}, child: Text("Login")),
HorizontalTextLine(text: "Continue With", color: Colors.brown, height: 1.5),
ElevatedButton(onPressed: (){}, child: Text("Sign in with Google")),
]
);
}
copied to clipboard
Api Options #
///defines the text to be added
final String text;

/// defines the color for the lines
final Color color;

/// defines the height for the lines
final double height;

/// defines the padding on the right of the line
final double paddingRight;

/// defines the padding on the the left of the line
final double paddingLeft;
copied to clipboard
Additional information #
You can contribute on this project on github
You can also follow me on twitter

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.