DividerThemeData.standard constructor

DividerThemeData.standard(
  1. FluentThemeData theme
)

Implementation

factory DividerThemeData.standard(FluentThemeData theme) {
  return DividerThemeData(
    thickness: 1,
    horizontalMargin: const EdgeInsets.symmetric(horizontal: 10),
    verticalMargin: const EdgeInsets.symmetric(vertical: 10),
    decoration: BoxDecoration(
      color: theme.resources.dividerStrokeColorDefault,
    ),
  );
}