Quantcast
Channel: Xamarin.Forms — Xamarin Community Forums
Viewing all 91519 articles
Browse latest View live

TapGestureRecognizer on Image inside ListView

$
0
0

Hi everyone,

We're trying to have a clickable icon inside a ListView item, we're using MVVM architecture. The problem is that the specified Command binding is not being executed, and I'm at a loss for what to do. Nothing happens when I tap the image, and the breakpoints inside the command are not being hit.

The XAML looks like this:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Name="Page">
  <Label Text="{Binding MainText}" VerticalOptions="Center" HorizontalOptions="Center" />
  <Grid Padding="8,8,8,8">
    <Grid.RowDefinitions>
      <RowDefinition Height="5*"></RowDefinition>
      <RowDefinition Height="25"></RowDefinition>
      <RowDefinition Height="5*"></RowDefinition>
    </Grid.RowDefinitions>
    <ScrollView Grid.Row="0" Orientation="Vertical" VerticalOptions="Fill" HorizontalOptions="Fill">
      <StackLayout Orientation="Vertical" VerticalOptions="Fill" HorizontalOptions="Fill">
        <p:Label Style="{StaticResource detailLabelStyle}" Text="OMSCHRIJVING" />
        <p:Label Style="{StaticResource darkLabelStyle}" Text="{Binding Opdracht.Description}"  />
        <p:Label Style="{StaticResource detailLabelStyle}" Text="TOTAAL"   />
        <p:Label Style="{StaticResource darkLabelStyle}" Text="{Binding Opdracht.Price}"  />

      </StackLayout>
    </ScrollView>
    <Grid Grid.Row="1" BackgroundColor="{StaticResource PGreen}" Padding="0,1,0,1">
      <AbsoluteLayout VerticalOptions="Fill" HorizontalOptions="Fill">
        <BoxView Color="White"
                 AbsoluteLayout.LayoutBounds="0,0,1,1" AbsoluteLayout.LayoutFlags="All"/>
        <p:Label Style="{StaticResource detailLabelStyle}" Text="ARTIKELEN" FontSize="Default"
                 AbsoluteLayout.LayoutBounds="4,3,.9,.9" AbsoluteLayout.LayoutFlags="SizeProportional"/>
      </AbsoluteLayout>
    </Grid>
    <ListView Style="{StaticResource listViewStyle}"
              Grid.Row="2"
              ItemsSource="{Binding Opdracht.Articles}"
              x:Name="OrdersListView"
              HasUnevenRows="True"
              VerticalOptions="Fill"
              HorizontalOptions="Fill"
              SelectedItem="{Binding SelectedItem, Mode=TwoWay}">
      <ListView.ItemTemplate>
        <DataTemplate>
          <ViewCell x:Name="viewCell">
            <ViewCell.View>
              <StackLayout Orientation="Vertical" VerticalOptions="Fill" HorizontalOptions="Fill">
                <Image Source="abacus_large.png">
                  <Image.GestureRecognizers>
                    <TapGestureRecognizer Command="{Binding Path=BindingContext.ViewArticleMilestonesCommand, Source={x:Reference Page}}"
                                          BindingContext="{x:Reference Page}"
                                          CommandParameter="{Binding ExploreArticleResultLine}" />
                  </Image.GestureRecognizers>
                </Image>
                <p:Label Style="{StaticResource detailLabelStyle}" Text="OMSCHRIJVING"/>
                <p:Label Style="{StaticResource darkLabelStyle}" Text="{Binding Description}"/>
                <p:Label Style="{StaticResource detailLabelStyle}" Text="AANTAL"/>
                <p:Label Style="{StaticResource darkLabelStyle}" Text="{Binding Amount}"/>
                <p:Label Style="{StaticResource detailLabelStyle}" Text="STATUS"/>
                <p:Label Style="{StaticResource darkLabelStyle}" Text="{Binding Status}" />
                <p:Label Style="{StaticResource detailLabelStyle}" Text="PRIJS"/>
                <p:Label Style="{StaticResource darkLabelStyle}" Text="{Binding Price}"/>
              </StackLayout>
            </ViewCell.View>
          </ViewCell>
        </DataTemplate>
      </ListView.ItemTemplate>
    </ListView>
  </Grid>
</ContentPage>


And this is the Command part of the ViewModel:

       public Command ViewArticleMilestonesCommand
        {
            get
            {
                if (_viewArticleMilestonesCommand != null)
                    return _viewArticleMilestonesCommand;
                else
                    return _viewArticleMilestonesCommand = new Command
                       (async (a) =>
                          {
                              var article = a as ExploreArticleResultLine;
                              if (a == null) return;

                              var milestoneResponse = await _service.GetArticleMilestones(article.Id);
                              if (milestoneResponse.StatusCode != HttpStatusCode.OK || milestoneResponse.Object == null)
                              {
                                  HandleException("Fout bij laden voortgangsgegevens", true);
                                  return;
                              }

                              await NavigationService.PushAsync<ExplorerArticleMilestonesPage, ExplorerArticleMilestonesViewModel>
                              (
                                  viewmodel =>
                                  {
                                      viewmodel.Milestones = (List<Milestone>)milestoneResponse.Object;
                                  });
                          });
            }
        }

Any help would be greatly appreciated.


Listview with Entry - Select the listview row(item) and Entry.Text when tap the Entry.

$
0
0

My app is a Xamarin.Forms PCL and I have this challenge that is driving me crazy to solve:

Every time I tap an item of the listview, I need to focus the entry and select everything inside it ("0" at this time).
I also need to select the item if I tap the Entry.

I think the key is get the elements inside the <ViewCell.View> to get access to the Entry and solve the problem with that, but who knows how to get those elements?

My screen is this:

My XAML listview is this:

<ListView x:Name="countsheetListView"
    IsGroupingEnabled="True"
        GroupDisplayBinding="{Binding InventoryGroupName}"
        ItemTapped="countsheetListView_ItemTapped">
        <ListView.GroupHeaderTemplate>
            <DataTemplate>
                <ViewCell>
                    <ViewCell.View>
                            <Grid BackgroundColor="#EAEAEA" >
                            <Label Text="{Binding InventoryGroupName}" Style="{StaticResource labelGroupTitleStyle}" />
                            </Grid>
                    </ViewCell.View>
                </ViewCell>
            </DataTemplate>
        </ListView.GroupHeaderTemplate>
        <ListView.ItemTemplate>
            <DataTemplate>
                <ViewCell>
                    <ViewCell.View>
                            <Grid HeightRequest="30">
                                <Grid.ColumnDefinitions>
                                        <ColumnDefinition Width="60*" />
                                        <ColumnDefinition Width="15*" />
                                        <ColumnDefinition Width="15*" />
                                        <ColumnDefinition Width="10*" />
                                </Grid.ColumnDefinitions>
                                <Label Grid.Column="0" Text="{Binding Description}" Style="{StaticResource labelStyle}"/>
                                <Entry Grid.Column="1" x:Name="txtCount" Text="0"  TextColor="Black" FontSize="15" HorizontalTextAlignment="End"    Focused="txtCount_Focused"/>
                                <Label Grid.Column="2" Text="{Binding RecipeUom}"  Style="{StaticResource labelStyle}"/>
                                <Image Grid.Column="3" Source="ic_info.png" HorizontalOptions="End" x:Name="imgSelectCountsheet">
                                        <Image.GestureRecognizers>
                                            <TapGestureRecognizer  NumberOfTapsRequired="1"/>
                                        </Image.GestureRecognizers>
                                </Image>
                            </Grid>
                    </ViewCell.View>
                </ViewCell>
            </DataTemplate>
        </ListView.ItemTemplate>
   </ListView>

This is that kind of irritating issue. Visually extremely simple, but I think I have a lot of work to do to achieve that.
Can anyone help me please?
Thank you anyway

Xamarin iOS in Shared project

$
0
0

Hi All,

I'm new to Xamarin but I'm transferred to a mobile team in my company to help out. Our project is Shared App Project with iOS and Android. To cut the story short I am working on iOS side and when I try to debug on device I'm getting this message:
Xamarin.iOS: Could not find the main bundle in the app ([NSBundle mainBundle] returned nil)
Everything works on simulator. I have the provisioning setup correctly and my device is registered (with few others). Not sure if anyone saw this message before. Any help would be appreciated.
Forgot to mention, the app builds just fine and deploys to device but I only see splash screen for a second and the app disappears
Thanks.

Invalid IL

$
0
0

Hi All,

Am getting the below error when trying some Forms2Native and Native2Forms witchcraft. Works OK elsewhere but was just wondering if anything jumps out at you that I may be doing incorrectly?

Essentially I need to have a Xamarin.Froms page, with a button that shows a Popover menu to select a user that is bound to the button on the toolbar. Then when clicked it should dismiss and change the data to the newly selected user.

Error is:
System.InvalidProgramException: Invalid IL code in ProjectName.vwClientMenu/c__AnonStorey7:<>m__0 (object,System.EventArgs): IL_0008: stfld 0x04000333

Code is:
`
btnDiary.TouchUpInside += (object sender, EventArgs e) => {
var pgDiary = App.GetCalendarPage(clsGlobal._clsLogin);
var vwDiary = pgDiary.CreateViewController();
vwDiary.Title = "Diary";

            List<User> lstUsers = GetUserList();
            List<string> lstUserCodes = GetUserCodeList(lstUsers);
            List<string> lstUserNames = GetUserNameList(lstUsers);

            clsGlobal.TrackEvent("Enter Diary (Forms)", pgDiary.DiaryAppointmentCount);

            var bbiAdd = new UIBarButtonItem(UIBarButtonSystemItem.Add, (s, e1) =>{
            })
            { Enabled = true };

            var bbiUser = new UIBarButtonItem(UIBarButtonSystemItem.Organize);
            bbiUser.Clicked += (object sender3, EventArgs e3) =>
            {
                pgListSelection pgForm = App.GetListSelection(lstUserNames);
                var pgViewController = pgForm.CreateViewController();
                pgViewController.ModalPresentationStyle = UIModalPresentationStyle.Popover;
                pgViewController.PopoverPresentationController.BarButtonItem = bbiUser;

                pgForm.ItemSelected += (int index) =>
                {
                    pgViewController.DismissModalViewController(true);
                    bbiUser.Title = lstUserNames[index];
                    pgDiary.ChangeUser(lstUserCodes[index], lstUserNames[index]);
                };

                this.PresentViewController(pgViewController, true, null);
            };


            UIBarButtonItem[] bbis = new UIBarButtonItem[] { bbiUser, bbiAdd };
            vwDiary.NavigationItem.RightBarButtonItems = bbis;

            this.NavigationController.PushViewController(vwDiary, true);
        };`

custom callout to TK.CustomMap

Xamarin.Forms animations

$
0
0

Hey!

I have an app with some animations that happen at the same time. This is causing the animations to lag sometimes, which is not good.
I've been searching if those animations, made using the Animation class from xamarin forms, run on the GPU and if not if it is possible to make them run on it.

Anyone with some experience on this?

Thanks!

How do I create a list of SwitchCell elements in a ListView?

$
0
0

Please forgive the general and basic level of this question, but - even though I have looked at lots of examples - I am really struggling to come up with working syntax for creating a ListView of SwitchCell elements in C# code (not XAML).

Could anyone post a short piece of code, showing how I would put this together?

Kind wishes ~ Patrick

CachedImage FFImageLoading for Xamarin.Forms

$
0
0

https://github.com/molinch/FFImageLoading or https://github.com/daniel-luberda/FFImageLoading/ (new Forms features)

DEMO: https://github.com/daniel-luberda/FFImageLoading/tree/master/samples/ImageLoading.Forms.Sample

Caching support

The library automatically deduplicates similar requests: if 100 similar requests arrive at same time then one real loading will be performed while 99 others will wait. When the 1st real read is done then the 99 waiters will get the image.

Both a memory cache and a disk cache are present.

By default, on Android, images are loaded without transparency channel. This allows saving 50% of memory since 1 pixel uses 2 bytes instead of 4 bytes in RGBA (it can be changed).

WebP support

WebP is supported on both iOS and Android.

Downsampling

Downloaded images can be automatically downsampled to specified size (less memory usage). DownsampleHeight and DownsampleWidth properties

Retry

Downloads can be repeated if not succeeded: RetryCount and RetryDelay properties.

Placeholders support

  • LoadingPlaceholder

  • ErrorPlaceholder

image image

After this pull it'll also support Transformations!
https://github.com/molinch/FFImageLoading/pull/47

Transformations support

It doesn't modify original source images. Example:

  • RoundedTransformation

  • CircleTransformation

  • GrayscaleTransformation

image image

... and some more features. Feel free to test it. Not all features are on nuget yet (older version).


Why does this Xamarin sample not crash?

$
0
0

I know it's a weird question. But why doesn't the Android app in this sample crash, since it's missing the "settings.png" file from it's resources/drawings folders: https://github.com/xamarin/xamarin-forms-samples/tree/master/Navigation/TabbedPageWithNavigationPage

Instead of crashing, it seems to fall back gracefully to the title and just renders the text "Settings". When I try to recreate this sample for a new project, my Droid app fails due to missing resource. It has me completely stumped. I'm new to Xamarin so I know I have some knowledge gaps, but this one is particularly vexxing.

See this SO question for more details

http://stackoverflow.com/questions/41370561/how-to-use-text-instead-of-image-on-android-tabbed-page

XamlSamples.ListViewDemoPage //Xamarin.Forms.Xaml.ParseException

$
0
0

Hello!
I'm facing a problem I don't understand, I'm working on Xamarin on Mac and I'm doing the tutorials from official page, enjoying a lot until now, I'm on : https://developer.xamarin.com/guides/xamarin-forms/xaml/xaml-basics/data_binding_basics/
but when doing the ListViewDemoPage tutorial I always get this error:

Xamarin.Forms.Xaml.XamlParseException: Position 8:13. Type NamedColor not found in xmlns clr-namespace:XamlSamples;assembly=XamlSamples

I even downloaded a copy of this code from GitHub repository and I get the same error :-/

Please helpme to understand where is the problem, I updated nuggets, tried on IOS and Android... but cant find what's wrong ...

Thank so much for any help!!!

PD: English is not my mother language.

App crashes after splash screen on iOS device

$
0
0

Hello everyone!
My app works correctly on the simulators but crashes on the real device. I dont see any logs in the deployment and application outputs. How could i know what crashes my app? Thank you!

Azure Bob storage Exception Microsoft.WindowsAzure.Storage.CloudStorageAccount

$
0
0

Hi,
I am getting below exception while accessing blob storage while parsing the connection string. Error:

The type initializer for 'Microsoft.WindowsAzure.Storage.CloudStorageAccount' threw an exception.

No solution found why is this happening?

Navigation Page Android Problem

$
0
0

Hi, i have a problem with Navigation Page because it work correctly in 2 page, but if i go to the third page not update the GUI for example the input in the Editor is hide or the WebView looks empty but work. If i use the PopModalAsync work correctly but with PopAsync not work. someone can help me?

Android keyboard and the ContentPage view collapsing/expanding issue w/ Material Design

$
0
0

Hi, after I upgraded to 1.5.1 and getting material design in place, my app is working and looking great in Android. HOWEVER the view when focussing or unfoccusing the keyboard does not work as expected.

I have a Grid with icons at the bottom of my ContentPage. So when the keyboard expands the Grid should be sitting on top of the keyboard and the Editor shrinking in height to accomodate. As mentioned this worked before the Material Design update.

I am using the IosKeyboardFixPageRenderer from http://stackoverflow.com/questions/31172518/how-do-i-keep-the-keyboard-from-covering-my-ui-instead-of-resizing-it/31172519 for iOS and it works great.

How do I fix this on Android with Material Design?

Thank you

XF on Android: From a notification action, how can I start my app then navigate to a specific page?

$
0
0

I'm somewhat new to Android, so be gentle. I have a notification with an action "Accept" which launches a non-UI activity to process that the user has accepted something and navigate the user to a specific page like a dashboard. This is all fine and good when the app is running or in the background, but when the app isn't running and I tap "Accept" from the notification, the app looks like it tries to start but immediately crashes. My app does require authentication so I need some way to launch the application with "something" that will allow me, in code, to navigate to a specific page after authentication.

Being new to Android I realize I may or may not be taking the right approach on this. If anyone can point me to some docs, or some feature, or something it would be greatly appreciated!


How to change camera settings in XF to get a small image size?

$
0
0

I am working on an XF app that takes and manages photos. I have a similar app in UWP where I can change the image dimensions taken by the camera by getting a list of the valid dimensions and then selecting an appropriate combination. The following code get the possible dimensions:
IEnumerable allStreamProperties = _mediaCapture.VideoDeviceController.GetAvailableMediaStreamProperties(MediaStreamType.VideoPreview).Select(x => new StreamResolution(x));
In this manner I can get as small an image size as the camera can take.

Is there something equivalent in XF?
Thanks!

Image Button

$
0
0

How to build image button in Xamarin form ? thanks

How do you properly implement a OnBackButtonPressed override with async functions?

$
0
0

We're a little confused as to how to mix Xamarin.Forms page functions like DisplayAlert and the OnBackButtonPressed override since one is async and the other is not.

We tried this, but the DisplayAlert doesn't appear since there is no await in front of it, but if we add it, it doesn't compile because the overridden event expects the return parameter to be bool, not Task<bool>.

protected override bool OnBackButtonPressed (){
    if (this.Detail.GetType().ToString() == "Klaim.HomePage") {
        Task<bool> action = DisplayAlert ("Quitter?", "Voulez-vous quitter l'application?", "Oui", "Non");
        if (action.Result)
            DisplayAlert("debugvalue", "TRUE", "ok");
    } else {
        ViewModel.NavigateTo (new HomePage(new HomeViewModel()));
    }
}

Xamarin.Forms 2.3.3.180

$
0
0

Important notes

  • Xamarin.Forms 2.3.3 depends on a Xamarin installation of Cycle 8. Users upgrading from Xamarin.Forms 2.3.2 (or earlier) will experience numerous compile errors if they attempt to build without first upgrading their Xamarin installation.

  • When upgrading Xamarin.Forms take care not to simply "update all" as that will update the Xamarin.Android.Support packages to an incompatible version. More info here.

  • In 2.3.3 we are deprecating Classic support (More info here).

Breaking changes

  • [UWP] TabbedPage ContentPresenter is now of type FormsPresenter instead of TabbedPagePresenter. This is an internal change only that will only affect users explicitly targeting TabbedPagePresenter in the UWP project.

2.3.3.180

Nuget package here.

Release Notes

Add authenticode signing.
No other changes.

2.3.3 sr1

Nuget package here.

Bug Fixes

  • 47707 - "47707 – Page.Toolbar is covering page.content with XF.UWP on Windows 10 phone" (PR)

  • 47295 - "[UWP] Toolbar is Clipped When Using a NavigationPage" (PR)

  • 47950 - "2.3.3 Regression: XAML compilation fails with behavior property and StaticResource" (PR)
  • 47971 - "XF UWP ListView Items no longer display" (PR)
  • 48105 - "Xamarin.Forms.Theme ResourceDictionary MergedWith fails in current build" (PR)
  • 48158 - "Hidden controls become transparent, static property does not bind" (PR)
  • 48242 - "Binding to constants not working any more in Xamarin Forms 2.3.3" (PR)
  • 48554 - "Bound static property does not call setter in custom view" (PR)
  • 48726 - "[UWP] Toolbar Covering Page Content" (PR)
  • [XamlC] assigned derived type to generic BP (PR)
  • [Xaml] support non-int enums (PR)

2.3.3 stable

Nuget package here.

Bug Fixes

  • 46195 - "Navigation Stack Errors in Xamarin.Forms.2.3.3.163-pre3" (PR)

2.3.3-pre4

Nuget package here.

Bug Fixes

  • 44338 - "Displaying context action causes ArgumentNullException when another item's context actions are already displayed on iOS10." (PR)

  • "[Win] Toolbar placement works with initial value" (PR)

  • "[Android] SoftInputMode works with initial value" (PR)

2.3.3-pre3

Nuget package here.

Bug Fixes

  • 44129 - "[Forms Android] Removing and adding items to TabbedPage BindingContext crashes the app when VM uses MvvmLight property Set()-method" (PR)

  • 44166 - "41166 - Fix MasterDetailPage/NavigationPage leaks on iPad" (PR)

  • 44596 - "Grey/Blank Screen when switching MainPage to MasterDetail with TabbedPage" (PR)
  • 45010 - "[2.3.3] 45010 – Forms Sample "WorkingWithListview" throw exception with WinPhone8.1" (PR)
  • 44166 - "MasterDetailPage instances do not get disposed upon GC; instance accumulation crashes app with OOM error using Forms 2.3.2.118-pre1 and AppCompat" (PR)
  • Don't unsubscribe/resubscribe the listener to the same INPC (PR)
  • 44886 - "UWP Listview ItemSelected event triggered twice for each selection" (PR)
  • [iOS] Fixes KVO native binding (PR)
  • Make CreateNativeControl virtual instead of abstract (PR)
  • 43993 - "iOS: ListView size does not return to normal after keyboard disappears" (PR)

  • 39768 - "PanGestureRecognizer sometimes won't fire completed event when dragging very slowly" (PR)

  • 42602 - "Custom BoxView Renderer Does Not Render All Its Children Elements" (PR)
  • [Xaml] Xaml native views and bindings for WP8.1 (PR)
  • [XamlC] Compiled converters (PR)
  • [Xaml] allow compatible arguments for x:Factory (PR)
  • [XAMLC] specify type and default value for native bindings (PR)
  • [2.3.3-pre2] [XamlC] supports enum and consts in x:Static (PR)
  • Reuse Handler when invoking on main thread (PR)

2.3.3-pre2

Nuget package here.

New Features

Support native view declaration in Xaml, and native Bindings

The following Xaml is valid, and works as expected:

<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:ios="clr-namespace:UIKit;assembly=Xamarin.iOS;targetPlatform=iOS"
             xmlns:androidWidget="clr-namespace:Android.Widget;assembly=Mono.Android;targetPlatform=Android"
             xmlns:formsandroid="clr-namespace:Xamarin.Forms;assembly=Xamarin.Forms.Platform.Android;targetPlatform=Android"
             xmlns:win="clr-namespace:Windows.UI.Xaml.Controls;assembly=Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime;targetPlatform=Windows"
       x:Class="Xamarin.Forms.Controls.XamlNativeViews">
    <ContentPage.Content>
        <ios:UILabel Text="{Binding NativeText}" View.HorizontalOptions="Start"/>
        <androidWidget:TextView Text="{Binding NativeText}" x:Arguments="{x:Static formsandroid:Forms.Context}" />
        <win:TextBlock Text="Foo"/>
    </ContentPage.Content>
</ContentPage>
  • native views are automagically wrapped into the appropriate wrapper
  • xmlns defined on a non-matching targetPlatform (see TargetPlatform enumeration) are ignored
  • you can bind to property of native views. A proxy is created on the fly for supporting 2-Way bindings if possible. If the native property doesn't implements INPC, or support Observable (on iOS), or is a DependencyProperty (on UWP), you can pass an UpdateSourceEventName parameter to the binding expression.
  • if you set, or bind to, attached BindableProperty to a native view that will be wrapped in a X.F.View, those property values and binding are transferred to the wrapper. See HorizontalOptions in the sample above.

Platform Specifics

Introducing Platform Specifics! Features or behaviors that apply to one platform only can now be implemented without requiring custom renderers. These new features/behaviors can then be accessed easily via a fluent code API or XAML.

Vendors can easily add their own Platform Specifics by attaching Effects to them (see 63a924d and 1f9482e for complete example).

This feature implements the framework that enables the new API and also includes several examples of platform specific features, which can be previewed using the Platform Specifics gallery page:

  • Blur support for any VisualElement on iOS

  • Translucent navigation bar on iOS

  • Partially collapsed navigation bar (with icons!) on MasterDetailPage on Windows
  • Toolbar placement options on Windows
  • AdjustResize/AdjustPan on Android (known issue: AdjustResize disables status bar color)

Bug Fixes

  • 32733 - "32733 – Switching Activity crash in 1.4.4.6392" (PR)

  • 35132 - "35132 – Pages are not collected when using a Navigationpage"

  • 39768 - "PanGestureRecognizer sometimes won't fire completed event when dragging very slowly" (PR)
  • 39908 - "Back button hit quickly results in jumbled pages" (PR)
  • 41463 - "CarouselView Crashes with "Sequence Does not Contain a Matching Element""
  • 42061 - "App crashes when registering an app link entry with invalid thumbnail url" (PR)
  • 42112 - "42112 - CarouselView throws error on Android while moving"
  • 42341 - "Page not removed from NavigationStack when hit Back quickly on iOS" (PR)
  • 42519 - "Text Truncation in UWP"
  • 42697 - "Slow swipe - System.InvalidOperationException: Sequence contains more than one element [CarouselView]"
  • 43230 - "DisplayAlert returns unexpected value when Escape key hit on UWP" (PR)
  • 43328 - "DisplayActionSheet() double-tap NullReferenceException crash Win8.1" (PR)
  • 43354 - "Button IsEnabled binding is position dependent" (PR)
  • 43450 - "Faulty syntax of Grid.RowDefinition wasn't caught with XamlC"
  • 43516 - "[UWP] Changing FontAttribute on a label to NONE changes font size as well" (PR)
  • 43530 - "[Android] Resuming app throws IllegalStateException from fragment manager"
  • 43726 - "Setting TabbedPage.ItemsSource to Null Causes Crash" (PR)
  • 43774 - "Appearing does not trigger for the first time for Tabpages in Android" (PR)
  • 43892 - "Xamarin.Forms.TabbedPage with FormsAppCompatActivity OnAppearing Troubles"
  • 44056 - "Picker Focused/Unfocused events not fired on iOS 10 preview" (PR)

Other fixes

  • iOS10 fixes

2.3.3-pre1

Only internal. There were no public artifacts/nuget packages for pre1.

Xamarin.Forms Multiline Entry / Textarea

$
0
0

Hey Guys,

I just have one Question to the Xamarin.Forms,
is there also possible to use Multiline-Text-Entries?

Cheers
F.

Viewing all 91519 articles
Browse latest View live