gpt4 book ai didi

flutter - 如何更改提升按钮主题中的提升按钮文本颜色?

转载 作者:行者123 更新时间:2023-12-04 12:13:59 25 4
gpt4 key购买 nike

我正在尝试更改主题中提升按钮主题属性中的提升按钮文本颜色,但无法更改。
我知道 Text 子元素中的 TextStyle 可以改变 Text 的颜色,但我更喜欢在提升的ButtonTheme中定义。

import 'package:flutter/material.dart';
import 'package:hexcolor/hexcolor.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
home: MyHomePage(title: 'Flutter Demo Home Page with 2.0'),
theme: ThemeData(
primaryColor: HexColor('#003f71'),
accentColor: HexColor('#e09e36'),
scaffoldBackgroundColor: HexColor('#003f71'),
textTheme: TextTheme(bodyText2: TextStyle(fontSize: 16.0), button: TextStyle(fontSize: 16.0)),
elevatedButtonTheme:
ElevatedButtonThemeData(style: ElevatedButton.styleFrom(minimumSize: Size(1, 45), primary: HexColor('#e09e36'), textStyle: TextStyle(fontSize: 16.0, color: Colors.black))),
),
);
}
}

class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);

final String title;

@override
_MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
alignment: Alignment.center,
margin: const EdgeInsets.all(15.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Container(
margin: const EdgeInsets.symmetric(vertical: 15.0),
child: FractionallySizedBox(
alignment: Alignment.center,
widthFactor: 1.0,
child: ElevatedButton(onPressed: () {}, child: Text('ElevatedButton')),
),
),
],
),
),
);
}
}
enter image description here

最佳答案

这是代码片段
如果你想使用主题,那么这里是:

MaterialApp(
theme: ThemeData(
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
onPrimary: Colors.yellow,
)),
),
home: MyWidget());
无需设置文本主题,您就可以像这样更改文本的颜色。
Container(
width: MediaQuery.of(context).size.width * 0.6,
child: ElevatedButton(
onPressed: () {},
style: ElevatedButton.styleFrom(
primary: Colors.pinkAccent,//change background color of button
onPrimary: Colors.yellow,//change text color of button
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(25),
),
elevation: 15.0,
),
child: Padding(
padding: const EdgeInsets.all(15.0),
child: Text(
'Proceed to Pay',
style: TextStyle(fontSize: 20),
),
),
),
),

关于flutter - 如何更改提升按钮主题中的提升按钮文本颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66756474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com