Skip to content

Instantly share code, notes, and snippets.

@zamahaka
Created February 13, 2020 13:18
Show Gist options
  • Save zamahaka/3c0a2b30b6c4d1ccdd2e6b8c592339f3 to your computer and use it in GitHub Desktop.
Save zamahaka/3c0a2b30b6c4d1ccdd2e6b8c592339f3 to your computer and use it in GitHub Desktop.
class SubscriptionSeparator extends StatelessWidget {
@override
Widget build(BuildContext context) => Container(
margin: EdgeInsets.only(left: SUBSCRIPTION_TILE_HORIZONTAL_SPACING),
height: SUBSCRIPTION_SEPARATOR_HEIGHT,
decoration: BoxDecoration(
border: Border.all(
color: AppColors.dividerGrey.withOpacity(0.08),
width: SUBSCRIPTION_SEPARATOR_BORDER_WIDTH,
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment