Coder Social home page Coder Social logo

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)

Moussa's Projects

bambimam icon bambimam

Monitoraggio della crescita dei bambini

contact icon contact

How to Create Simple C# Desktop Application? Adding Actual Functionality/Events (CRUD)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.