I am new to flutter and I have created an Todo app, for that I want to add a quick guide once the the users opens the app for the first time after installation.
I have seen something like that in the ICICI mobile app, there once you installed it will give a you a quick tour about what all option you will get with a pointing arrow, below that its description and a next button, I want to do similar to that in my flutter application.
Can anyone who had implemented the same, or know about it , can you share the same.
Thanks
Here is the plugin named- feature_discovery which shows the app tour guide following the material design guidelines.
It's quite simple what all you need ::
Whole screen image including pointing arrow.
Your Button to go next and previous.
Connect all screens using navigation.
That's it,
Thanks.
Related
I'm trying to add a favorites feature with flutter. If you activate it by clicking the Favorites button inside the page, you need to implement it so that the Favorites page marked as Favorite appears in the page selection window. getx was too complex to implement, so I gave up on it. Are there any other attractions or advice pages?
I've seen shared_preferences: ^2.0.7, but it's my first time developing an app, so it's difficult to develop because there are no examples.
You could have a statefull widget on Page selection where you read from preferences in init state and give that value to the favorite icon (e.g. true icon color is red, false -> white). And pass a function such as (setState(() {favorite = !favorite});) to the second page. Then if user click on the favorite button on page 2 and navigates back, the color will change. Also don't forget to save it on prefs when you click the iconButton.
You might want to have a look to this flutter cookbook. While this will not teach you about shared preferences, it will basically implement the other functionalities you want. It's actually a great way to start learning Flutter which new Flutter users.
Once you understand this cookbook and feel confident, you might want to have a look at this flutter tutorial on shared preferences which is beginner friendly as well.
If you would take an advice, I would urge you to start with as little dependencies as you can and use them only when you need them. If you are new to flutter, and for a simple app, GetX is not needed and will disturb you more than help you.
I want to create a button can move to any position like iPhone Style (Virtual Home Button) in Flutter but I don't know any packages or any library can do it. Moreover, I'd like the button to be able to show along with a specific app, eg. dial-up UI. If I deploy to desktop, will its behavior the same with mobile?
ios virtual home button
show button along with dial-up UI
Hope you guys help me ways to create it.
I have tried with unicorndial, floating_bubble, popup window, etc.
but all of them are widget within flutter app, instead of system-wide.
Sorry you can't really create anything like that outside of your App context. Apple is very strict in situations like this.
You can implement this sort of feature in Android by using Floating Service. But for Apple it's a NO NO.
I am a beginner in iOS development.
I followed this tutorial https://github.com/nrlnishan/ViewPager-Swift to implement a viewPager in my application.
Then I followed https://github.com/nbyn/MWAPopup/blob/master/README.md to implement a popup in the first view of the popup.
But the popup background doesn't appear as full screen.
This screenshot may explain more my problem.
Please help me.
You are showing the popup on the wrong UIViewController. show method shows the popup inside the UIViewController that is passed in as a parameter.
Also when using someones else's GitHub code or library, always look for the number of the stars for the repository since the most quality solutions are recognized by the community, especially solutions to the popular problems like popups. Try something like this https://github.com/Orderella/PopupDialog
I want to create a Setting page in iPhone.
If you used Facebook in iPhone. You see that when we click on the Setting button on the navigationBar, the main page just go to right, but not disappear, and Setting page comes up.
When we click on the setting button again, we go back to the main page.
Do you know how can I create this functionality in iPhone? I appreciate that you give me some tutorial links.
You can grab this JTRevealSidebarDemo and personalize as per your requirement.
There are plenty of other demo available like,
DDMenuController
ZUUIRevealController
I've been using ViewDeck with good success. It's light (2 classes) and easy to implement.
I was trying to find out how Facebook's application MENU works on iPhone and iPad. Once you press the button at the top left, the main screen moves on the right and the menu appears.
I was trying to create the same menu/effect on xCode but I had no luck.
Do anyone here knows how I can do this? can you redirect me to any website that has that kind of information? Or can you please guide me through on how to make such a menu?
Thanks
the facebook app was created with this open source framework three20
also if you cannot find what you want in the framework, I suggest building your own UI elements inside UIViews, that appear, dissappear as you want,
good luck!