私はこの問題を解決するために数時間試みましたが成功しませんでした。
問題: 親の AlertDialog ウィジェットの幅いっぱいに TextButton を取得できません。幅が double.infinity の SizedBox で TextButton をラップしようとすると、ボタンを押すとクラッシュします (これは、Web によると、ボタンを全幅にする方法であるはずです)。
意図された効果: TextButton が親 AlertDialog の幅を取るようにします。
これは、問題に対して機能する最小限の実行可能なコードです (パッケージの google fonts を使用していることに注意してください。それらをすべて削除したことを願っていますが、ここでは非常に遅いです。):
import 'package:flutter/material.dart';
// import 'package:google_fonts/google_fonts.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
inputDecorationTheme: InputDecorationTheme(
focusedBorder: UnderlineInputBorder(
borderSide: BorderSide(
color: Color(0xffB2413A),
),
),
),
),
home: LoginScreen(),
);
}
}
class LoginScreen extends StatelessWidget {
const LoginScreen({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
var size = MediaQuery.of(context).size;
return Scaffold(
body: Container(
height: size.height,
child: Center(child: LoginWidget()),
decoration: BoxDecoration(
color: Colors.black54,
image: DecorationImage(
image: AssetImage('assets/background_image.jpeg'),
fit: BoxFit.cover,
colorFilter: ColorFilter.mode(
Colors.black.withOpacity(0.08), BlendMode.dstATop),
),
),
),
);
}
}
class LoginWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
final _size = MediaQuery.of(context).size;
final double _height = (_size.height) * 0.40;
final double _width = _height * 0.8;
return Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Container(
child: Center(
child: Text(
'Login',
style: TextStyle(
color: Colors.white,
fontSize: 26,
fontWeight: FontWeight.bold),
),
),
height: _size.height * 0.085,
width: _width,
decoration: BoxDecoration(
color: Color(0xffB2413A),
borderRadius: BorderRadius.only(
topLeft: Radius.circular(15), topRight: Radius.circular(15)),
),
),
Container(
height: _size.height * 0.38,
width: _width,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(15),
bottomRight: Radius.circular(15)),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Padding(
padding: const EdgeInsets.all(12.0),
child: TextFieldAlertDialog(),
),
],
),
),
],
);
}
}
class TextFieldAlertDialog extends StatelessWidget {
_displayDialog(BuildContext context) async {
return showDialog(
context: context,
builder: (context) {
return AlertDialog(
titlePadding: EdgeInsets.all(0),
actionsPadding: EdgeInsets.all(0),
buttonPadding: EdgeInsets.all(0),
//TODO: THIS TEXTBUTTON WON'T TAKE THE SIZE OF ITS PARENT //.
actions: <Widget>[
SizedBox(
width: double.infinity,
child: TextButton(
onPressed: () {},
child: Text("Reset Password"),
// style: TextButton.styleFrom(
// textStyle: GoogleFonts.rubik(fontSize: 25),
// primary: Colors.white,
// backgroundColor: Color(0xffB2413A),
// ),
),
),
],
);
},
);
}
@override
Widget build(BuildContext context) {
return Center(
child: TextButton(
child: Text(
'FORGET PASSWORD',
// style: GoogleFonts.rubik(
// color: Colors.black, fontSize: 18, fontWeight: FontWeight.w500),
),
onPressed: () => _displayDialog(context),
),
);
}
}
この問題を解決するための助けをいただければ幸いです。
クラッシュ レポートのスクリーンショットを追加しました。
質問:
- ボタンが親 AlertDialog の全幅を占めるようにするにはどうすればよいですか?