Skip to content

Instantly share code, notes, and snippets.

@skabber
Created January 3, 2019 18:47
Show Gist options
  • Save skabber/7b3521bf2aa9eabb2a386d347fb65fb6 to your computer and use it in GitHub Desktop.
Save skabber/7b3521bf2aa9eabb2a386d347fb65fb6 to your computer and use it in GitHub Desktop.
Multiline TextField issue.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: ''),
);
}
}
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(
appBar: AppBar(
title: Text('Flutter Text Decenders Bug'),
),
body: Container(
color: Colors.lightGreenAccent,
child: Scrollbar(
child: TextField(
autofocus: true,
maxLines: 4,
textCapitalization: TextCapitalization.sentences,
decoration: InputDecoration.collapsed(
border: InputBorder.none,
hintText: "type here please",
hintStyle: TextStyle(color: Colors.green)),
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment