videoAndPhotoDivider static method
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,
);
}