UPLOAD IMAGE FROM PHONE TO MAUI APP .NET | .MAUI | SOURCE CODE

preview_player
Показать описание
UPLOAD IMAGE FROM PHONE TO MAUI APP .NET | .MAUI | SOURCE CODE | KIGAMES

In this video I show you how upload a image from phone to maui app in c# with .maui in visual studio.

SOURCE CODE GITHUB:

Software Used :
➤ VISUAL STUDIO

#upload #maui #sourcecode

•Music Credit: Audio Library — Music for content creators
Song: 🍂Chill – sakura Hz (No Copyright Music)

•Music Credit: Tokyo Music Walker
Song: Tokyo Music Walker - Way Home

•Time :
00:00 : Intro
00:05 : Demo Upload Image
00:26 : Create New Project
00:48 : Create Folder Model / Services / Views
01:26 : Add Class in Model And Services
07:16 : Display Image
09:52 : Outro

See you next !!!

--------------------------------------
Keywords:
upload image from phone to maui app .net Dotnet Source Code
Рекомендации по теме
Комментарии
Автор

thank you! but there is a issue with your code: change if (result.ContentType == "image/png" ||
result.ContentType == "image/jpeg" ||
result.ContentType == "image/jpg")
return result;

TO

if (result.ContentType == "png" ||
result.ContentType == "jpeg" ||
result.ContentType == "jpg")
return result;

BreakingSkiesMedia