[fluf]テキストボタン
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar( title: Text('안녕'),),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('텍스트'),
Icon(Icons.star),
Container(child: Text('컨테이너 안이야'), color: Colors.red,),
TextButton(
child: Text('난 텍스트버튼'),
onPressed: (){
print('텍스트 버튼 눌림');
},
),
],
)
),
),
);
}
}
Reference
この問題について([fluf]テキストボタン), 我々は、より多くの情報をここで見つけました https://velog.io/@so_yeong/flutter-6nawyqtbテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol