Skip to content
View salisou's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report salisou

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
salisou/README.md

Computador iuriCode

Ciao 👋 , sono Moussa

Sono un appassionato sviluppatore, Programmatore Software Developer & Full Stack Developer

Le mie esperienze lavorative hanno consolidato le mie competenze in vari aspetti dello sviluppo software, dalla programmazione alla gestione dei database, dimostrando la capacità di lavorare sia in modo autonomo che in team. Le mie abilità includono anche la programmazione in linguaggi come C#, Python, PHP e SQL, oltre alla familiarità con tecnologie front-end e back-end, strumenti di versionamento come Git e il lavoro con sistemi operativi Linux.

Sono appassionato del mio lavoro e ho dimostrato un impegno costante nell'apprendimento e nell'aggiornamento delle mie competenze, il che mi permette di offrire soluzioni tecnologiche avanzate e di alta qualità per le piccole e medie imprese.

salisou

contribuzione per Sanke graph

snake gif

Stats



Progetti su GitHub

Concetto di app sviluppato con Xamarin Forms.
Cosa è stato utilizzato nello sviluppo:


Screenshots

Android

delivery_android delivery_android2


.net maui Challenge PodBox App

challenge2023

UnitConverter1 UnitConverter2



[.NET MAUI] Presentazione di come utilizzare Expander

delivery_android delivery_android2 delivery_android2

Get started building a material text entry in .NET MAUI

ControlEntry

Maui Calculator

CalcLight CalcTheme CalcBlack

.NET MAUI UI Challenge # 7 - Coffe Shop App

Lottie Splash Screen

BambiMam

BambiMam

BambiMam

Travel App - UI Challenge

BambiMam

MauiDemoAppBurguer

delivery_android


- Net Maui PerfetPay Application https://github.com/salisou/MauiPerfetPay

-net Maui BMI Calculator https://github.com/salisou/MauiAppBMI.App

Maui Navbar Animation #1

Original design

Animation1

My .NET MAUI implementation

       

Supported platforms

These are all the platforms the app works on:

  • Android
  • iOS (macOS)
  • Windows

Navbar Animation #2

Original design

[Dribbble Design

My .NET MAUI implementation

       

Supported platforms

These are all the platforms I have tested the app on:

  • Android
  • iOS (macOS)
  • Windows

Xamarin-Forms-Calculator

- Doing my first steps in Mobile Development with Xamarin Forms


# MauiCollectionViewDemo ## Package Reference - PropertyChanged.Fody

DataView LayoutsPage ProductsView Switch_ConnectivityIssue Switch_NoResultsView

MauiTasker

MainView AddNewTask NewCategory ConfirYourCategory

MauiWeather

Weather Forecast API

Paste json as classes C#

public class WeatherData
{
    public float latitude { get; set; }
    public float longitude { get; set; }
    public float generationtime_ms { get; set; }
    public int utc_offset_seconds { get; set; }
    public string timezone { get; set; }
    public string timezone_abbreviation { get; set; }
    public float elevation { get; set; }
    public Current_Weather current_weather { get; set; }
    public Daily_Units daily_units { get; set; }
    public Daily daily { get; set; }
    public ObservableCollection<Daily2> daily2 { get; set; } = new ObservableCollection<Daily2>();
}

public class Current_Weather
{
    public float temperature { get; set; }
    public float windspeed { get; set; }
    public float winddirection { get; set; }
    public int weathercode { get; set; }
    public int is_day { get; set; }
    public string time { get; set; }
}

public class Daily_Units
{
    public string time { get; set; }
    public string weathercode { get; set; }
    public string temperature_2m_max { get; set; }
    public string temperature_2m_min { get; set; }
}

public class Daily
{
    public string[] time { get; set; }
    public int[] weathercode { get; set; }
    public float[] temperature_2m_max { get; set; }
    public float[] temperature_2m_min { get; set; }
}

public class Daily2
{
    public string time { get; set; }
    public int weathercode { get; set; }
    public float temperature_2m_max { get; set; }
    public float temperature_2m_min { get; set; }
}

Package Reference

  • PropertyChanged.Fody
  • SkiaSharp.Extended.UI.Maui

Model class WeatherData

Add this code Style into App.xaml

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="Resources/Styles/Colors.xaml" />
            <ResourceDictionary Source="Resources/Styles/Styles.xaml" />
            <ResourceDictionary Source="Resources/Styles/AppStyles.xaml" />
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

Add ResourceDictionary AppStyles into folder style then add this code

<?xml version="1.0" encoding="utf-8" ?>
<?xaml-comp compile="true" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">

<Style x:Key="MainStackLayout" TargetType="VerticalStackLayout">
    <Setter Property="Margin" Value="0,10,0,0"/>
    <Setter Property="Spacing" Value="15"/>
    <Setter Property="VerticalOptions" Value="Center"/>
</Style>

<Style TargetType="Label">
    <Setter Property="FontFamily" Value="Rubik"/>
    <Setter Property="HorizontalOptions" Value="Center"/>
    <Setter Property="VerticalOptions" Value="Center"/>
    <Setter Property="TextColor" Value="{StaticResource White}"/>
</Style>

<Style x:Key="Title" TargetType="Label">
    <Setter Property="FontAttributes" Value="Bold"/>
    <Setter Property="FontSize" Value="Large"/>
</Style>

<Style x:Key="WeatherTitle" TargetType="Label">
    <Setter Property="FontFamily" Value="RubikLight"/>
</Style>

<Style x:Key="WeatherValue" TargetType="Label">
    <Setter Property="FontAttributes" Value="Bold"/>
</Style>

<Style x:Key="Card" TargetType="Frame">
    <Setter Property="Padding" Value="0"/>
    <Setter Property="Opacity" Value=".1"/>
    <Setter Property="CornerRadius" Value="25"/>
    <Setter Property="WidthRequest" Value="150"/>
    <Setter Property="HeightRequest" Value="150"/>
    <Setter Property="BorderColor" Value="Transparent"/>
    <Setter Property="BackgroundColor" Value="{StaticResource CardBlue}"/>
</Style>


<Style x:Key="card" TargetType="Frame">
    <Setter Property="Padding" Value="0" />
    <Setter Property="Opacity" Value=".1" />
    <Setter Property="CornerRadius" Value="25" />
    <Setter Property="WidthRequest" Value="150" />
    <Setter Property="HeightRequest" Value="150" />
    <Setter Property="BorderColor" Value="Transparent" />
    <Setter Property="BackgroundColor" Value="{StaticResource CardBlue}" />

</Style>

MainPage MianPage2

ASP.NET Web Application With SQL Server and CRUD Operations Query

BambiMam BambiMam

Conoscenza:

android  azure circleci csharp css3 django docker dotnet git heroku html5 illustrator javascript linux mariadb mongodb mssql mysql nodejs oracle photoshop php postgresql postman python redis sqlite symfony travisci xamarin



Trophies

Trophy




Connect with me ☕

salisoumoussa7@ https://www.linkedin.com/in/moussa-salisou/ https://stackoverflow.com/users/14309667/moussa




Support Me:

Moussa saliou



PayPal


HEY, I'M AKSHAY (1)

Pinned Loading

  1. SampleGoogleAuth SampleGoogleAuth Public

    C# 1

  2. Maui-Navbar-Animation Maui-Navbar-Animation Public

    C# 8 1

  3. Samsung_Wallet Samsung_Wallet Public

    C# 2

  4. Caculatrice Caculatrice Public

    Xamarin-Forms-Calculator

    C#

  5. MauiAppCoffeShop.App MauiAppCoffeShop.App Public

    C# 2

  6. MauiPlugingExpresionPanel MauiPlugingExpresionPanel Public

    Expander in .Net Maui

    C# 1