Skip to content

Commit

Permalink
rm unnecessary text field modification
Browse files Browse the repository at this point in the history
  • Loading branch information
solid-danylokhvan committed Jul 6, 2023
1 parent fcb360b commit f72e27a
Showing 1 changed file with 5 additions and 19 deletions.
24 changes: 5 additions & 19 deletions example/lib/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,25 +40,11 @@ class _AppState extends State<App> {
mainAxisAlignment: alignments[currentAlignmentIndex],
children: [
LanguageToolTextField(
// scrollPadding: EdgeInsets.all(20.0),
// keyboardType: TextInputType.multiline,
maxLines: 99999,
style: const TextStyle(),
decoration: InputDecoration(
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(8),
borderSide: const BorderSide(color: Colors.blueGrey),),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(8),
borderSide: const BorderSide(color: Colors.blueGrey),),
),

coloredController: _controller,
mistakePopup: MistakePopup(
popupRenderer: PopupOverlayRenderer(),
),
),

style: const TextStyle(),
decoration: const InputDecoration(),
coloredController: _controller,
mistakePopup: MistakePopup(popupRenderer: PopupOverlayRenderer()),
),
DropdownMenu(
hintText: "Select alignment...",
onSelected: (value) => setState(() {
Expand Down

0 comments on commit f72e27a

Please sign in to comment.