change default badge border radius

This commit is contained in:
krawieck 2020-09-28 22:35:48 +02:00
parent 175248e06e
commit 1d7a5fbf0a
3 changed files with 1 additions and 3 deletions

View File

@ -517,7 +517,6 @@ class _Badge extends StatelessWidget {
style:
TextStyle(color: textColorBasedOnBackground(theme.accentColor)),
),
borderRadius: const BorderRadius.all(Radius.circular(10)),
),
);
}

View File

@ -436,7 +436,6 @@ class _Badge extends StatelessWidget {
style:
TextStyle(color: textColorBasedOnBackground(theme.accentColor)),
),
// TODO: change border radius
),
);
}

View File

@ -6,7 +6,7 @@ class Badge extends StatelessWidget {
Badge({
@required this.child,
this.borderRadius = const BorderRadius.all(Radius.circular(5)),
this.borderRadius = const BorderRadius.all(Radius.circular(10)),
});
@override