videoAndPhotoDivider static method

Widget videoAndPhotoDivider(
  1. BuildContext context
)

Implementation

static Widget videoAndPhotoDivider(BuildContext context) {
  return Divider(
    height: 1,
    thickness: 1,
    color: Colors.black,
    indent: MediaQuery.of(context).size.width * 0.1,
    endIndent: MediaQuery.of(context).size.width * 0.1,
  );
}