Wallpaper app, dont work image gallery saver - flutter

I'm making a wallpaper application, I ran into this problem 1) For some reason, the image gallery saver does not work, the resolution works 2) If someone understands infinity scroll I will be very happy to help, I just can’t write it into the code. Thanks in advance for the answers
https://github.com/Myliu1904/New_Wallpaper_HD/blob/master/lib/views/imageView.dart
https://github.com/Myliu1904/New_Wallpaper_HD/blob/master/lib/controller/imageView_controller.dart

I have no idea what you talk about in first question, but for the long Lists you can read this doc from flutter https://flutter.dev/docs/cookbook/lists/long-lists.

Related

Flutter How to make background Carousal image like below image

Is there any package to design below screen like. I tried lot of time on Online to get solution, but i didn't get any solution.
Can any one help me how to develop carosual card like below image ?
I've used this carousel slider package once.
also, this video might help. Kind of similar to your needs.
(I'll update the answer once I get to my computer.)

iPhone: iPhoto like tile view for image browsing

In an iPhone application I want to create an UI that just look like iPhoto application where photos will be loaded like iPhoto's tile view.
I am planning to use UITableView To achieve this.
How can I manage showing random sizes images just like iPhoto app shows in there gallery view?
Any library which will help to achieve it? Can you please provide code sample url's?
Shiv you can try AQGridView that may help you to achieve what you are looking for.
You can also wait for IOS 6 and see photo tools.
check out http://three20.info/ as well and may help you. Probably you may have hit iPhone show photos/images sliding (like photo library and Facebook app)? link. but be sure to check this link.
Hope this many things would help you; I tried to give answer in noon but it take me late and it's evening now.

How can i take screen shots from running video in iphone

I have developed one application in iPhone which contains videos.
Now I want to take screen shots form that running video.I am not having much time for search.
Is anybody having any idea regarding this thing...I know i have asked a bit silly question but still want proper answer.
Try this
- (UIImage *)thumbnailImageAtTime:(NSTimeInterval)playbackTime timeOption:(MPMovieTimeOption)option
maybe this could help you:
http://www.iphonedevsdk.com/forum/iphone-sdk-development/2353-possible-make-screenshot-programmatically-2.html
To take a screenshot on iPhone press the Home and Sleep/Power buttons at the same time.

iphone: scale when using glgif library

I am using glgif to display some gif picture on iphone, the gif is be downloaded from web. I display it on iphone successfully but the picture seems wrong scale. It happened to many pictures. Can anyone suggest me to fix this? I dig in to glgif but can not find a way to fix.
Thank you very much.
Uncomment [self setAspectScale:YES]; inside -(void)startAnimation:(Video*)video;

iPad flip-clock with Core Animation

I'm trying to make the flip-clock animation, I find this tutorial very interesting
http://www.voyce.com/index.php/2010/04/10/creating-an-ipad-flip-clock-with-core-animation/
but I still can't make it work.
If someone did it and could share is experience or even the code source that will be really nice.
Thanks,
P.S: if you have other tutorial link please share them.
What, exactly, do you need help on?
At the moment, there is some sample code available at Google Code:
http://code.google.com/p/idharmaclock/source/browse/trunk/LostoClock/Classes/LostoClockViewController.m?spec=svn2&r=2
Referenced from:
http://www.iphonedevsdk.com/forum/tutorial-requests/52329-flip-clock-animation-tutorial.html
check this out:
Flip Transform
I actually made a small framework out of the tutorial. Check:
https://github.com/jaydee3/JDFlipNumberView
It contains two main classes:
JDFlipNumberView (animated digits)
JDDateCountdownFlipView (a date countdown, just init with a date, set a frame and there you go.)
In any case, you just need to do three steps:
Init the class
Set a target value (or a date)
Start the animation
I don't know if you can use this but who knows. There's a HTC hero theme for the iPhone, installable on jailbroken iPhones. This is not at all interesting, except for one feature of the theme. It has the flipclock. This theme shows the time on the homescreen exactly like you want. You can download the sourcecode of the theme here. You might have to dig into the code but the flipclock is there somewhere!
Good luck and I hope you'll be able to make your application work like a charm!