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

코드 수정

parent bfa5e3ba
......@@ -200,23 +200,21 @@ class _TextToSpeechPageState extends State<TextToSpeechPage> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Flutter TTS'),
),
body: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
children: [
_inputSection(),
_btnSection(),
_engineSection(),
_futureBuilder(),
_buildSliders(),
if (isAndroid) _getMaxSpeechInputLengthSection(),
],
),
return Scaffold(
appBar: AppBar(
title: Text('Flutter TTS'),
),
body: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
children: [
_inputSection(),
_btnSection(),
_engineSection(),
_futureBuilder(),
_buildSliders(),
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