How can I disable the textbaseline?
because my text is not centered
I try to center a text in a contair. I use this font: https://www.dafont.com/young.font?l[]=10&l[]=1
import 'package:flutte_template/styles/theme_dimens.dart';
import 'package:flutter/material.dart';
class RoundedChip extends StatelessWidget {
final Widget child;
final Color color;
const RoundedChip({@required this.child, @required this.color});
@override
Widget build(BuildContext context) {
return Container(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: ThemeDimens.padding4),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Padding(
padding: const EdgeInsets.symmetric(vertical: ThemeDimens.padding4),
child: Text('Drama', style: ThemeTextStyles.mediaDetailGenreText),
),
],
),
),
decoration: BoxDecoration(
borderRadius: BorderRadius.all(
Radius.circular(999),
),
color: color,
),
);
}
}
static const TextStyle mediaDetailGenreText = TextStyle(color: ThemeColors.textColor, fontSize: 15, fontWeight: FontWeight.w500);
I hope it helps after this long time :) wrap the text widget with baseline widget
Baseline(
baselineType: TextBaseline.alphabetic,
child: Text(
'Some Text',
textAlign: TextAlign.center,
),
baseline: 40.0,
),
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With