Skip to content

Instantly share code, notes, and snippets.

@furkantoptass
Created April 13, 2021 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save furkantoptass/10416540c7afb76f31661df853139a13 to your computer and use it in GitHub Desktop.
Save furkantoptass/10416540c7afb76f31661df853139a13 to your computer and use it in GitHub Desktop.
Hata çözümü
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Webmaster.Kitchen"),
backgroundColor: Colors.deepOrangeAccent,
),
body: Padding(
padding: const EdgeInsets.only(top: 58.0, right: 10, left: 10),
/// In AnimSearchBar widget, the width, textController, onSuffixTap are required properties.
/// You have also control over the suffixIcon, prefixIcon, helpText and animationDurationInMilli
child: AnimSearchBar(
width: 400,
textController: textController,
onSuffixTap: () {
setState(() {
textController.clear();
});
},
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment