divider method

Widget divider(
  1. dynamic context
)

Implementation

Widget divider(context) {
  return SizedBox(
    height: 0.5,
    child: Center(
      child: Container(
        padding: const EdgeInsets.all(0),
        margin: const EdgeInsetsDirectional.only(start: 0.0, end: 0.0),
        height: 0.5,
        color:
            Theme.of(context).textTheme.bodyMedium!.color!.withOpacity(0.2),
      ),
    ),
  );
}