import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
class MainScreen extends StatefulWidget {
@override
_State createState() => _State();
}
enum Sex { Male, Female }
class _State extends State<MainScreen> {
Sex _sex = Sex.Male;
double _height = 180;
int _weight = 74;
int _age = 25;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: new Text("BMI CALCULATOR")),
body: SafeArea(
child: Container(
padding: EdgeInsets.all(24),
child: Row(
children: [
Expanded(
child: Card(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
"WEIGHT",
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold, color: Colors.grey),
),
Text(
_weight.toString(),
style: TextStyle(fontSize: 60, fontWeight: FontWeight.bold),
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
FloatingActionButton(
child: Text("-", style: TextStyle(fontSize: 50),),
onPressed: () => {},
),
FloatingActionButton(
child: Text("+", style: TextStyle(fontSize: 50),),
onPressed: () => {},
)
],
)
])))])
),
),
);
}
}
How can I center the '-' and '+' text signs? I have tried with centered widget and align widget without any luck.

