Merge branch 'dev' into 'master'
Dev See merge request Didvan/didvan-app!9
This commit is contained in:
commit
66789325a7
|
|
@ -6,6 +6,7 @@ class DidvanRadialButton extends StatelessWidget {
|
||||||
final String title;
|
final String title;
|
||||||
final VoidCallback onSelected;
|
final VoidCallback onSelected;
|
||||||
final bool value;
|
final bool value;
|
||||||
|
final double? fontSize;
|
||||||
final String? fontFamily;
|
final String? fontFamily;
|
||||||
const DidvanRadialButton({
|
const DidvanRadialButton({
|
||||||
Key? key,
|
Key? key,
|
||||||
|
|
@ -13,6 +14,7 @@ class DidvanRadialButton extends StatelessWidget {
|
||||||
required this.onSelected,
|
required this.onSelected,
|
||||||
required this.value,
|
required this.value,
|
||||||
this.fontFamily,
|
this.fontFamily,
|
||||||
|
this.fontSize,
|
||||||
}) : super(key: key);
|
}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
@ -52,6 +54,7 @@ class DidvanRadialButton extends StatelessWidget {
|
||||||
style: Theme.of(context).textTheme.bodyText2!.copyWith(
|
style: Theme.of(context).textTheme.bodyText2!.copyWith(
|
||||||
fontFamily: fontFamily,
|
fontFamily: fontFamily,
|
||||||
),
|
),
|
||||||
|
fontSize: fontSize,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue