Load image from URI into Button in Xamarin.Forms using FFImageLoading - xamarin

Is there any way to load Image into Xamarin.Forms Button from URL?
It seems that button itself only support FileImageSource.
Sure, I can download image and then manually put it into Button, but I hope someone has done this already in reusable fashion :)

You can add Tap gesture on a image instead of button
https://developer.xamarin.com/guides/xamarin-forms/application-fundamentals/gestures/tap/

Try putting Image control inside a frame control which will give a better view like button with drop shadow if you prefer. Plus use the Tapgesture

Related

Taking save/download screen/creating an image using knockout.js

We have an mvc app built using knockout.js and there is a outer frame and then it has several panels inside. They use high charts too within the panels.
What I have don't know is how to do download image/screen when a user clicks a button from the outer frame or even from on the panel, of an existing panel after its loaded . I can raise an event when the button is clicked but now I don't know how to capture the already loaded panel and then convert it into an image file.
Any ideas?
Thanks in advance.
Sarah

Particular image won't show in UIButton

I am trying to show the following image in a UIButton.
For some reason, the delete icon won't work here but any other image does. Is there something wrong with the image?
The button wasn't added to the target membership

Xamarin Forms - Disable loading spinner on ListView

I have a Xamarin forms app where I'm using ListViews to display some data, with pull to refresh enabled. When the ListView is pulled and starts the refresh it has its own spinner animation. However, this doesn't display when the page first loads, and so I've wired in a separate ActivityIndicator to indicate loading for just the first time. It's styled different though. I would prefer to use the ActivityIndicator, since it's what's used through the rest of the app, but I haven't found a way to disable the spinner animation on the ListView yet. Is it possible to disable it? Any suggestions would be appreciated, thanks!
There are a few ways I can think of to solve this.
Don't use Pull-to-refresh. Xamarin.Forms has this built in and you can't customize it without using renderers and altering controls. Instead, start your refresh another way (ToolbarItem, etc) and continue using your custom ActivityIndicator.
Customize the existing ListViews UIRefreshControl. You may be able to use a renderer or "Effect" to customize the RefreshControl being used by the native control. This would allow you to style it a little close to what your custom indicator looks like.
Change the color of the spinner. This is my least favorite option. You could workaround this by changing the color of the spinner to match the background so you don't see it.

Create Page custom animations in Windows Phone 8.1 (Windows Runtime)

I would like to develop some animations for my pages or my page content. The approach of which one I should follow is unclear to me at the moment and I'll try to explain why.
What I'd like to achieve is to create a page (or page content) animation with a slide-in from right when navigating to the page and slide-out to left when leaving the page.
The slide-in part can be achieved with ContentThemeTransition from TransitionCollection. But what about the slide-out part?
I can't seem to know or find any good timing regarding when to fire a slide-out animation just before the page is about to be left.
I'dlike not to apply any animation to the page in such way that WP does by default (with some jump-out, jump-in effect). I'd like to be like BasicPage from templates with no animation but with custom animated content upon page enter and page leave.
How could this be achieved?
Thanks in advance.
I assume you are navigating from the page via tapping a button or something similar. Why don't you create a storyboard animation, start that from the Click event handler of the button, and call Frame.Navigate() when the animation has finished playing?

Custom button not displaying in Today Extension

I have some custom buttons in my host app that I'd like to use in the Today Extension.
They work just fine in the app but do not display in the widget.
The button on the left is my custom button class, the one on the right is a UIButton. If I change it to my custom class it too disappears.
Any thoughts why this might be happening?
----------------------EDIT------------------------
Well, somehow I managed to get it to display but sometimes it's not drawing the whole button and sometimes it's drawing the button incorrectly.
Any help would be appreciated! Thanks

Resources