Posts

Showing posts with the label #study

School UI Design using xamarin form

Image
School UI Design using xamarin form All Part of School UI Design: https://xamarinuidesigns.blogspot.com/2022/03/school-ui-design-using-xamarin-form.html https://xamarinuidesigns.blogspot.com/2022/03/school-ui-design-using-xamarin-form_4.html https://xamarinuidesigns.blogspot.com/2022/03/school-ui-design-using-xamarin-form_10.html https://xamarinuidesigns.blogspot.com/2022/03/school-ui-design-fees-gallery-profile.html First add  Fontawesome  in your project. First image is for Dashboard, Second is for TimeTable and last is for Syllabus. Rest of the page will publish in next blog. You can also replace the calendar view with another calendar control as listed below: Calendar Control 1 Calendar Contorl 2 Code is explain in this video First we will change NavigationDrawercolor. In App.xaml add following code in Application.Resources Tag <Application.Resources> <ResourceDictionary> <OnPlatform x:TypeArguments="x:String" x:Key="FontAwesom

Online Course UI Design in xamarin form

Image
Online Course UI Design in xamarin form  First we will create template that are required for all pages. There are four template: CartView CategoryView CourseView LecturerView CartView.xaml <ContentView xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:model="clr-namespace:OnlineCourseUIDesigns.ViewModels" x:Class="OnlineCourseUIDesigns.Controls.CartView"> <ContentView.Content> <StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" Padding="20,10"> <Frame BackgroundColor="White" CornerRadius="20" HasShadow="True"> <Grid x:DataType="model:LecturerViewModel" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" ColumnSpacing="20"