Skip to content

Commit

Permalink
I got so mad about provisioning profiles I don't remember what these …
Browse files Browse the repository at this point in the history
…changes where
  • Loading branch information
Programming-With-Chris committed Aug 19, 2022
1 parent ef13104 commit 11a5b71
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion ShoppingList/Resources/Styles/Styles.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
<Setter Property="HasShadow" Value="False" />
<Setter Property="BorderColor" Value="{AppThemeBinding Light={DynamicResource DarkAccent}, Dark={DynamicResource DarkAccent}}" />
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={DynamicResource Tertiary}, Dark={DynamicResource Tertiary}}" />
<Setter Property="CornerRadius" Value="8" />
<Setter Property="CornerRadius" Value="0" />
</Style>

<Style TargetType="ImageButton">
Expand Down
4 changes: 2 additions & 2 deletions ShoppingList/ShoppingList.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
<ProvisioningType>automatic</ProvisioningType>
<CodesignProvision />
<CodesignKey>iPhone Developer</CodesignKey>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='net6.0-ios'">
<CodesignKey>Apple Development: Created via API (4FWGR6HJNC)</CodesignKey>
<CodesignKey>Apple Development: Created via API (DU8TKLLB7K)</CodesignKey>
<CodesignProvision>VS: dev.programmingwithchris.ShoppingList Development</CodesignProvision>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0-ios|AnyCPU'">
<CodesignEntitlements />
<MtouchUseLlvm>True</MtouchUseLlvm>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0-ios|AnyCPU'">
Expand Down
18 changes: 18 additions & 0 deletions ShoppingList/View/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:model="clr-namespace:ShoppingList.Model"
xmlns:viewmodel="clr-namespace:ShoppingList.ViewModels"
xmlns:skiasharp="clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI"
x:DataType="viewmodel:UserListViewModel"
Title="{Binding Title}"
BackgroundColor="{DynamicResource Secondary}"
Expand Down Expand Up @@ -55,6 +56,23 @@
</CollectionView.ItemTemplate>
</CollectionView>


<skiasharp:SKLottieView x:Name="CartLottie"
WidthRequest="300"
HeightRequest="300"
Grid.Row="0"
RepeatCount="0"
RepeatMode="Restart"
Opacity=".5"
ZIndex="-1"
Grid.Column="0"
Grid.ColumnSpan="2"
VerticalOptions="End"
HorizontalOptions="Center"
Source="69114-shopping-cart.json"
BackgroundColor="Transparent">
</skiasharp:SKLottieView>

<Button Text="Get UserLists"
Command="{Binding GetUserListsCommand}"
IsEnabled="{Binding IsNotBusy}"
Expand Down
2 changes: 1 addition & 1 deletion ShoppingList/View/SettingsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</HorizontalStackLayout>

<Border BackgroundColor="{DynamicResource Primary}" Margin="0,25,0,0">
<Label Text="List Sorting Settings"
<Label Text="Other Settings"
Margin="5,15,15,15"
Padding="10"/>
</Border>
Expand Down
15 changes: 0 additions & 15 deletions ShoppingList/View/UserListDetails.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,21 +136,6 @@

</GraphicsView.GestureRecognizers>
</controls:CircularButton>
<!--<skiasharp:SKLottieView x:Name="CartLottie"
WidthRequest="100"
HeightRequest="100"
Grid.Row="0"
Grid.Column="0"
VerticalOptions="End"
HorizontalOptions="Start"
Source="69114-shopping-cart.json"
BackgroundColor="{DynamicResource Primary}">
<skiasharp:SKLottieView.GestureRecognizers>
<TapGestureRecognizer Command="{Binding NewItemDialogCommand}"/>
</skiasharp:SKLottieView.GestureRecognizers>
</skiasharp:SKLottieView>-->
</Grid>
</Grid>

Expand Down

0 comments on commit 11a5b71

Please sign in to comment.