getHRWithText function

dynamic getHRWithText({
  1. required String text,
})

Implementation

getHRWithText({required String text}) {
  return Row(
    children: <Widget>[
      Expanded(child: Divider(color: Colors.grey.shade600,)),
      const SizedBox(width: 10.0),
      Text(text,style: smallText,),
      const SizedBox(width: 10.0),
      Expanded(child: Divider(color: Colors.grey.shade600,)),
    ],
  );
}