Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created August 24, 2018 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/5b4ed10efe77bb2e6d7208bf7d16d18e to your computer and use it in GitHub Desktop.
Save MarcinusX/5b4ed10efe77bb2e6d7208bf7d16d18e to your computer and use it in GitHub Desktop.
class GenderLine extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Padding(
padding: EdgeInsets.only(
bottom: screenAwareSize(6.0, context),
top: screenAwareSize(8.0, context),
),
child: Container(
height: screenAwareSize(8.0, context),
width: 1.0,
color: Color.fromRGBO(216, 217, 223, 0.54),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment