rowDiv function

Widget rowDiv(
  1. double width
)

Implementation

Widget rowDiv (double width) {
  return Row(
    mainAxisAlignment: MainAxisAlignment.center,
    children: [
      Container(
        color: Colors.grey.shade300,
        height: 1,width: width,
      ),
      SizedBox(width: 8,),
      Text(
        'or',
        textAlign: TextAlign.center,
        style: TextStyle(
          color: Colors.grey.shade600,
          fontSize: 10,
          decoration: TextDecoration.none,
        ),
      ),
      SizedBox(width: 8,),
      Container(
        color: Colors.grey.shade300,
        height: 1,width: width,
      ),
    ],
  );

}