Commit 33b55aff authored by Gavin An's avatar Gavin An

코드 수정

parent bfa5e3ba
...@@ -200,23 +200,21 @@ class _TextToSpeechPageState extends State<TextToSpeechPage> { ...@@ -200,23 +200,21 @@ class _TextToSpeechPageState extends State<TextToSpeechPage> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return MaterialApp( return Scaffold(
home: Scaffold( appBar: AppBar(
appBar: AppBar( title: Text('Flutter TTS'),
title: Text('Flutter TTS'), ),
), body: SingleChildScrollView(
body: SingleChildScrollView( scrollDirection: Axis.vertical,
scrollDirection: Axis.vertical, child: Column(
child: Column( children: [
children: [ _inputSection(),
_inputSection(), _btnSection(),
_btnSection(), _engineSection(),
_engineSection(), _futureBuilder(),
_futureBuilder(), _buildSliders(),
_buildSliders(), if (isAndroid) _getMaxSpeechInputLengthSection(),
if (isAndroid) _getMaxSpeechInputLengthSection(), ],
],
),
), ),
), ),
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment