Flutter:列文本想要居中
Flutter: Column text want in center
我想将我的列文本居中,我还想改变我的对话框背景颜色。
怎么做。
我想将我的列文本居中,我还想改变我的对话框背景颜色。
怎么做。
这是我的对话代码。
import 'package:bellaz/Extension/AppColor.dart';
import 'package:bellaz/Utils/Constants.dart';
import 'package:flutter/material.dart';
class LocationDialog extends StatelessWidget {
dialogContent(BuildContext context) {
return Container(
padding: EdgeInsets.all(10),
decoration: new BoxDecoration(
color: Colors.white,
shape: BoxShape.rectangle,
borderRadius: BorderRadius.circular(10),
boxShadow: [
BoxShadow(
color: Colors.black26,
blurRadius: 10.0,
offset: const Offset(0.0, 10.0),
),
],
),
child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min, // To make the card compact
children: <Widget>[
SizedBox(height: 20,),
Image.asset(
"lib/Assets/searchYellow.png",
height: 50,
width: 50,
),
Align(
alignment: Alignment.center,
child: Text(
"Device location is not enabled",
style: TextStyle(
fontSize: t2Size,
fontWeight: FontWeight.w600,
),
),
),
SizedBox(height: 16.0),
Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
"Please enable device location to ensure accurate nearby salons location for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: t3Size,
color: extraLightColor),
),
],
),
SizedBox(height: 24.0),
Container(
padding: EdgeInsets.symmetric(vertical: 14),
decoration: BoxDecoration(color: appGreenColor,
borderRadius: BorderRadius.circular(5),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.my_location_rounded,
color: Colors.white,
),SizedBox(width: 7,),
Text(
'Enable Device Location',
style: TextStyle(color: Colors.white,fontSize: t3Size),
)
],
),
),
SizedBox(height: 4.0),
Container(
padding: EdgeInsets.symmetric(vertical: 14),
decoration: BoxDecoration(color: Colors.white,
borderRadius: BorderRadius.circular(5),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(
"lib/Assets/searchYellow.png",
height: 23,
width: 23,
),
SizedBox(width: 7,),
Text(
'Enter Location Manually',
style: TextStyle(color: appYellowColor),
)
],
),
),
SizedBox(height: 20.0),
],
),
);
}
@override
Widget build(BuildContext context) {
return Dialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
elevation: 0.0,
backgroundColor: ,
child: dialogContent(context),
);
}
}
如何将此文本居中,我还想更改透明显示的背景颜色
这是我的实物UI,我想做成这样
这对我有用。
Text("Please enable device location to ensure accurate nearby salons locatio for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 22,
color: Colors.blue),
textAlign: TextAlign.center,
),
=> 您必须添加 textAlign: TextAlign.center This Line Of All Text 小部件
你可以看下面的例子。
例如:
Text("Please enable device location to ensure accurate nearby salons locatio for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 22,
color: Colors.blue),
textAlign: TextAlign.center,
),
尝试删除您的第二个列小部件并提供 TextAlign.center
Text(
"Please enable device location to ensure accurate nearby salons location for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 17,
color: Colors.black),
textAlign: TextAlign.center,
),
你的屏幕->
Text("Please enable device location to ensure accurate nearby salons locatio for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 22,
color: Colors.blue),
textAlign: TextAlign.center,
),
请参考以下代码
Text(
"Please enable device location to ensure accurate nearby salons locatio for easy search",
textAlign: TextAlign.center,
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 22,
color: Colors.blue),
),
我想将我的列文本居中,我还想改变我的对话框背景颜色。 怎么做。
我想将我的列文本居中,我还想改变我的对话框背景颜色。 怎么做。
这是我的对话代码。
import 'package:bellaz/Extension/AppColor.dart';
import 'package:bellaz/Utils/Constants.dart';
import 'package:flutter/material.dart';
class LocationDialog extends StatelessWidget {
dialogContent(BuildContext context) {
return Container(
padding: EdgeInsets.all(10),
decoration: new BoxDecoration(
color: Colors.white,
shape: BoxShape.rectangle,
borderRadius: BorderRadius.circular(10),
boxShadow: [
BoxShadow(
color: Colors.black26,
blurRadius: 10.0,
offset: const Offset(0.0, 10.0),
),
],
),
child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min, // To make the card compact
children: <Widget>[
SizedBox(height: 20,),
Image.asset(
"lib/Assets/searchYellow.png",
height: 50,
width: 50,
),
Align(
alignment: Alignment.center,
child: Text(
"Device location is not enabled",
style: TextStyle(
fontSize: t2Size,
fontWeight: FontWeight.w600,
),
),
),
SizedBox(height: 16.0),
Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
"Please enable device location to ensure accurate nearby salons location for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: t3Size,
color: extraLightColor),
),
],
),
SizedBox(height: 24.0),
Container(
padding: EdgeInsets.symmetric(vertical: 14),
decoration: BoxDecoration(color: appGreenColor,
borderRadius: BorderRadius.circular(5),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.my_location_rounded,
color: Colors.white,
),SizedBox(width: 7,),
Text(
'Enable Device Location',
style: TextStyle(color: Colors.white,fontSize: t3Size),
)
],
),
),
SizedBox(height: 4.0),
Container(
padding: EdgeInsets.symmetric(vertical: 14),
decoration: BoxDecoration(color: Colors.white,
borderRadius: BorderRadius.circular(5),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(
"lib/Assets/searchYellow.png",
height: 23,
width: 23,
),
SizedBox(width: 7,),
Text(
'Enter Location Manually',
style: TextStyle(color: appYellowColor),
)
],
),
),
SizedBox(height: 20.0),
],
),
);
}
@override
Widget build(BuildContext context) {
return Dialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
elevation: 0.0,
backgroundColor: ,
child: dialogContent(context),
);
}
}
如何将此文本居中,我还想更改透明显示的背景颜色
这是我的实物UI,我想做成这样
这对我有用。
Text("Please enable device location to ensure accurate nearby salons locatio for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 22,
color: Colors.blue),
textAlign: TextAlign.center,
),
=> 您必须添加 textAlign: TextAlign.center This Line Of All Text 小部件 你可以看下面的例子。
例如:
Text("Please enable device location to ensure accurate nearby salons locatio for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 22,
color: Colors.blue),
textAlign: TextAlign.center,
),
尝试删除您的第二个列小部件并提供 TextAlign.center
Text(
"Please enable device location to ensure accurate nearby salons location for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 17,
color: Colors.black),
textAlign: TextAlign.center,
),
你的屏幕->
Text("Please enable device location to ensure accurate nearby salons locatio for easy search",
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 22,
color: Colors.blue),
textAlign: TextAlign.center,
),
请参考以下代码
Text(
"Please enable device location to ensure accurate nearby salons locatio for easy search",
textAlign: TextAlign.center,
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 22,
color: Colors.blue),
),