Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I'm new in flutter and I'm doing an app from dribble, do not know how to do this kinda scrolling
https://cdn.dribbble.com/users/1837506/videos/32005/influenza_small.mp4
Please, can u show me how to make or share some links :)
Check this Custom transitions applying on the PageViews
https://medium.com/flutter-community/a-deep-dive-into-pageview-in-flutter-with-custom-transitions-581d9ea6dded
May be it will solve your problem, please do let me know. Happy coding
Try using a PageView with vertical axis.
Take a look at this video
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I have Google Maps in my Flutter app in which I have set a marker.
The Marker is set to draggable:true but still I cannot drag it.
Please help.
I am stuck for 3 days and there is no answer I could find on google.
You should try holding your marker for a second before dragging it. I also had the same problem and after holding for a second and dragging it worked fine.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm currently trying to create a clicker game which shows how much money you receive when clicking. I'm new to Xcode and swift, but this seems like it should be pretty easy. I would like the score to show how much you earn each time you click it. These labels would appear then disappear quickly. Here is what it would look like:
Any and all help in furthering the clicker game (tips, etc.) would be greatly appreciated :)
you can add a tap gesture to your view controller and in that UITapGestureRecognizer selector you can do your code to increment count.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm trying to find some information about image creation and editing in OS X apps. Something like Sketch or Photoshop allows you to create a rectangle with any width and height. Is there some docs about how to create something looks like that in an OS X app?
I just wanna create scalable rectangle and save it into image.
P.S. And how to make it draggable with mouse?
Thanks a lot Willeke for the link, it's just what I was looking for!
Sample code Sketch
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Is there any hint that the spinning effect of images/patterns (on Slot Machine) can be implemented on iOS ?
What I can think of is to use animation of graphics of UIImageView.
Any better suggestion ?
You can go with UIPickerView containing UIImageViews as elements, or check this url
What about a UIPickerView with custom views ?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Link to what I mean:
http://imgur.com/a/bltbY
What I'd like to get is the same transparent border, up pointing arrow and tint for my own pop-up views.
Any help would be appreciated.
Thanks,
Andrei
You have to use the UIPopOverController.
Setting the contentViewController to your TableViewController. To attach it to a button you can use the presentPopoverFromRect:inView:permittedArrowDirections:animated: method.