Posts

Showing posts with the label .net

Home Page - Food Delivery App in Maui

Image
  Home Page - Food Delivery App in MAUI Please, support my blog by clicking on our sponsors ad! Follow basic setup from here You will get all page of this app from FoodDeliveryApp Menu on top. Let's Create Model MenuModel public class MenuModel { public string Name { get; set; } public decimal Price { get; set; } public string Description { get; set; } public ImageSource Image { get; set; } } RestaurantModel public class RestaurantModel { public string Name { get; set; } public string Description { get; set; } public string Rating { get; set; } public ImageSource Image { get; set; } public List<MenuModel> Menus { get; set; } = new List<MenuModel>(); } BannerModel public class BannerModel { public ImageSource Image { get; set; } } BaseViewModel public class BaseViewModel : INotifyPropertyChanged { bool isBusy = false;

Food Delivery - Login Page with animation

Image
Login page with animation Food Delivery app - animated login page Please, support my blog by clicking on our sponsors ad! Follow basic setup from  here You will get all page of this app from FoodDeliveryApp Menu on top. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="FoodDeliveryApp.Pages.Authentication.Login" xmlns:mct="clr-namespace:CommunityToolkit.Maui.Behaviors;assembly=CommunityToolkit.Maui" Title="Login" BackgroundColor="{x:StaticResource BackgroundColor}" Shell.NavBarIsVisible="False"> <ContentPage.Behaviors> <mct:StatusBarBehavior StatusBarColor="{x:StaticResource Primary}"></mct:StatusBarBehavior> </ContentPage.Behaviors> <Grid RowDefinitions="Auto,Auto,Auto,Auto,Auto&