Skip to content

Instantly share code, notes, and snippets.

@eseidelGoogle
Created January 10, 2020 17:09
Show Gist options
  • Save eseidelGoogle/c4a6a6847867e93d1a7b337306a2945e to your computer and use it in GitHub Desktop.
Save eseidelGoogle/c4a6a6847867e93d1a7b337306a2945e to your computer and use it in GitHub Desktop.
TextField and InkWell inconsistent splash #31108
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Column(
children: <Widget>[
TextField(),
TextField(),
Container(
height: 50,
child: InkWell(
onTap: () {}
)
)
]
)
)
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment