@@FlutterMapp Most developers just forget some concept, they want something quick, they spend more time working on the project itself. Your channel will help those developers. Good Job.
hi, I really enjoyed these flutter of the day series. Just a suggestion if you can add some firebase videos Thank you so much for your time and effort in these videos
Cool vid as always. Can you please make a video about accepting payments in app? I'm pretty familiar with apple side of things but don't know how to use it with flutter and also how to do it with Play market side for accepting payments on Android
Can you have a tutorial of multiple strings in search ex. "Lorem","Lorem 1","Lorem 2","Lorem 3","Lorem 4"; and it shows the result of search all containing the data
Thank you from Ukraine. Really awesome video
Pleasure Yarsort! Thanks for the comment and have a fantastic day ✌
Please continue this series in 2022.
Maybe 🤣🤣
I've been using form field all this time, thanks so much
Pleasure! This one is simpler I think 👏
Woah another channel about the flutter widget. Awesome.
Keep like this, make it short and you will have so many views.
Yeah this is the goal, fast video without time wasting. Because why watching a 15min video when you can watch a 2min video 😂😂
@@FlutterMapp Most developers just forget some concept, they want something quick, they spend more time working on the project itself.
Your channel will help those developers. Good Job.
Letsgooo! Thanks a lot Frosts! ✌️
hi, I really enjoyed these flutter of the day series. Just a suggestion if you can add some firebase videos
Thank you so much for your time and effort in these videos
Hi Abdull, Firebase videos will come on the channel for sure 🎉
This exactly what i need, thanks you so much
Pleasure!
Great....didnt know this widget although I thought I´m a flutter professional! 😀
Great stuff, thank you!
Thanks from India
Thanks for sharing ❤️💕💕💕💕💕💕💕💕💕💕💕💕💕💕💕💕💕
Awesome video 👏👏
Thank you very much Moocsoft👏🔥
I love you sooo much thank you
Thank you very much Hasn 👏 I do appreciate your comment 🚀
Cool vid as always. Can you please make a video about accepting payments in app? I'm pretty familiar with apple side of things but don't know how to use it with flutter and also how to do it with Play market side for accepting payments on Android
Yeah sure, this videos will come on 2022 probably since its more advance stuff 😂🚀
Cool!
To search an sqflite db how do i do that? Is it the same? Any specific steps to be taken? Fantastic vids 😊
Thanks a lot
Pleasure PoisoNels 🙏⚡
thanks for sharing
Pleasure!
Thank you
Pleasure Munir 🎉🙏
Awsome can you do some more detailed on firebase yours tutorial is easy to catch
Yeah sure, some firebase tutorial will be available soon on the channel 🚀
advanced stuff
Letsgoooo! 🎉🙏
Can you have a tutorial of multiple strings in search ex. "Lorem","Lorem 1","Lorem 2","Lorem 3","Lorem 4"; and it shows the result of search all containing the data
the video shows the same code for suggestions and results ?
Why are you running as if someone is chasing you?
can i put the button inside body ?
Can u make search bar for number list? like barcode list.
Amazing, is it allow in git?
Someone asked for the code and I copy paste it in the comments if you need it 👏
Thanks for this! I tried it out and it's great, but is there a way to customize what the search bar looks like? Thanks
That's a package or flutter built-in???
Built-in 🔥🚀
Omg i didn't know and had to create everything from scratch everytime! I'm upset lol
Thank you for showcasing this ❤️
@@blackhatvisions Yeah that pretty cool and useful 🚀 Have a great day ✌
Damn i had spent so much more time coz i didnt know about this
Letsgooo! This is the most underrated I think. 🤣
@@FlutterMapp yeah was really helpful
❤️❤️❤️❤️
🎉🎉🎉🎉
can you please share int his source code
import 'package:flutter/material.dart';
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State createState() => _MyHomePageState();
}
class _MyHomePageState extends State {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
actions: [
IconButton(
onPressed: () {
showSearch(
context: context,
delegate: CustomSearchDelegate(),);
},
icon: const Icon(Icons.search),
),
],
),
);
}
}
class CustomSearchDelegate extends SearchDelegate {
List searchTerms = [
'Apple',
'Banana',
'Pear',
'Watermelons',
'Oranges',
'Blueberries',
'Strawberries',
'Raspberries',
];
@override
List buildActions(BuildContext context) {
return [
IconButton(
icon: const Icon(Icons.clear),
onPressed: () {
query = '';
},
),
];
}
@override
Widget buildLeading(BuildContext context) {
return IconButton(
icon: const Icon(Icons.arrow_back),
onPressed: () {
close(context, null);
},
);
}
@override
Widget buildResults(BuildContext context) {
List matchQuery = [];
for (var fruit in searchTerms) {
if (fruit.toLowerCase().contains(query.toLowerCase())) {
matchQuery.add(fruit);
}
}
return ListView.builder(
itemCount: matchQuery.length,
itemBuilder: (context, index) {
var result = matchQuery[index];
return ListTile(
title: Text(result),
);
},
);
}
@override
Widget buildSuggestions(BuildContext context) {
List matchQuery = [];
for (var fruit in searchTerms) {
if (fruit.toLowerCase().contains(query.toLowerCase())) {
matchQuery.add(fruit);
}
}
return ListView.builder(
itemCount: matchQuery.length,
itemBuilder: (context, index) {
var result = matchQuery[index];
return ListTile(
title: Text(result),
);
},
);
}
}
Hope this help 🙏
Okay. Not any harder to create it manually tbh.
Maybe, I have never try manually 🤣
Agreed
I was building it manually till now, lol
This does not work on Flutter web on Android.
Not sure about this. I never tested on web 🤔 Thanks for sharing 🚀
@@FlutterMapp I have even raised a bug, I guess an year back. They marked it as P4 🤦🏻♂️🙄. Still pending.
@@AbhideepChakravarty 🤣🤣 Yeah flutter web is not Flutter team priority 🤣
rahmat
share source code please
I don't have the source code anymore. 🥲 Hope your understand 🔥