Code HQ Team Accept any Mobile App Development Project ! Feel free to contact us via Email for more details.
@sweeneyartstudio9 ай бұрын
Hi, You really did a great job.well done!
@codeheadq9 ай бұрын
Thanks
@HaroTecnoConnect3 ай бұрын
Hey! hermano!!. Que buen video. Se verdad te lo agradesco! Gracias por compartir. Saludos desde México 🇲🇽
@JoeHarts-yj4jj11 ай бұрын
Nice job bro.
@codeheadq11 ай бұрын
Thank you! Cheers!
@awaisaslam-b7q8 ай бұрын
Keeping in mind that i only used the code of facebook feed that i required for my community module.I didnot used the code of friend request and story module
@codeheadq8 ай бұрын
Facebook clone is completely featured based so you can use or not use as many features as you want and it won't break the app. The only required module is authentication.
@awaisaslam-b7q8 ай бұрын
@@codeheadq In the auth feature i have changed the user model and removed the gender,bday, lists of friends,recieved request and send requests , will it affect chat application ,as i have simply copied what you have done.The changges i made in auth for my own project.
@codeheadq8 ай бұрын
As long as you don't use those properties inside your chats, it's not gonna make any difference. Just make sure when you create your users don't ask for those properties in the UI.
@cana_36910 ай бұрын
can you add voice and notification as well it will be cool
@codeheadq10 ай бұрын
Good idea! We will cover those in a future video.
@awaisaslam-b7q8 ай бұрын
I want to develop such a module for my fyp app but want it to be a expert guide module in which every user can only contact 4 experts that are texting them.What steps should i take to develop such an chat system .
@codeheadq8 ай бұрын
You can use 2 mechanisms to limit the number of chats to 4. One way is to check if the list of chatrooms has reached 4 and if true disable chat button. You can also block things on the server side as when you try to create a new chatroom you can check if there are already 4 chatrooms for the selected user and if so return an exception saying that you can't create any more chats and also prompting the user this error.
@awaisaslam-b7q8 ай бұрын
@@codeheadq Thanks I will try to implement it
@kantorroomy37618 ай бұрын
I want run this code to flutterflow and i need to add opening page and login page. Can i see the opening page and login page in yours? Thanks for your help sir
@codeheadq8 ай бұрын
You can visit the GitHub repo where I have posted a picture of the app UI, you can look at the design and also the code for it. The link is in description.
@sanamrai456511 ай бұрын
sir can i make relase version apk of this app if yes what are the modification that i have to do in .xml or other files
@codeheadq11 ай бұрын
If you want to make a release version of this app you just need to run these commands in the terminal: For Version to release on playstore/appstore: flutter build appbundle --release For thin apk version to use yourself: flutter build apk --split-per-abi If you want to release your app to playstore, we will soon publish a tutorial about that, where you learn not only how to modify your .XML files but also release it on playstore.