There is an issue for the bug/feature this PR is for. To avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it.
The angular renderer doesn't support adding views to the first position:
<StackLayout><ng-container*ngIf="someBoolean"><Labeltext="I come first"></Label><Labeltext="I come second" *ngIf="someOtherBoolean"></Label></ng-container></StackLayout>
Result:
I come second
I come first
This is because the renderer treats not having a previous element as needing to append.
ViewContainer at position 0. StackLayout is empty, StackLayout now contains ViewContainer at 0
add ng-container before ViewContainer (no previous element). StackLayout now contains [VC,ng-container] (should be the other way around). Doubly linked list references are now broken.
add "I come first" before ng-container. [VC, "I come first", ng-container]
add "I come second" before ng-container. [VC, "I come second", "I came first", ng-container] (linked list is broken, so it wraps around from ng-container until "I came first")
What is the new behavior?
ViewContainer at position 0. StackLayout is empty, StackLayout now contains ViewContainer at 0
add ng-container before ViewContainer (no previous element). StackLayout now contains [ng-container,VC]
add "I come first" before ng-container. ["I come first", ng-container, VC]
add "I come second" before ng-container. ["I come first", "I came second", ng-container, VC]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Checklist
What is the current behavior?
The angular renderer doesn't support adding views to the first position:
Result:
This is because the renderer treats not having a previous element as needing to append.
What is the new behavior?
Fixes/Implements/Closes #[Issue Number].