buildOrDivider static method
Implementation
static Widget buildOrDivider() {
return const Row(
children: [
Expanded(child: Divider()),
Padding(
padding: EdgeInsets.symmetric(horizontal: 16),
child: CustomText(
text: 'OR',
color: Color(0xCC222222),
),
),
Expanded(child: Divider()),
],
);
}