Community samples section for VS4Mac Samples Importer addin
Перейти к файлу
Javier Suárez Ruiz f7d0aa515f Added more samples 2019-02-25 20:35:35 +01:00
BikeSharing Adding samples metadata 2019-02-11 20:43:48 +01:00
Bikr Adding samples metadata 2019-02-11 20:43:48 +01:00
BindableLayoutPlayground Added initial sample 2019-02-07 19:15:46 +01:00
ConferenceVision More samples 2019-02-11 20:49:52 +01:00
Gastropods More samples 2019-02-11 20:49:52 +01:00
KickassUI.Chameleon Added Author info 2019-02-11 20:16:29 +01:00
KickassUI.FancyTutorial Adding samples metadata 2019-02-11 20:43:48 +01:00
KickassUI.ParallaxCarousel Adding samples metadata 2019-02-11 20:43:48 +01:00
KickassUI.Runkeeper Adding samples metadata 2019-02-11 20:43:48 +01:00
KickassUI.Spotify More samples 2019-02-11 20:49:52 +01:00
KickassUI.Twitter More samples 2019-02-11 20:49:52 +01:00
Movies Added more samples 2019-02-07 20:10:57 +01:00
My Tasks Added new sample 2019-02-25 20:24:00 +01:00
My Trip Countdown Added more samples 2019-02-07 20:10:57 +01:00
Posy More samples 2019-02-11 20:55:45 +01:00
Pulse Music Added more samples 2019-02-07 20:10:57 +01:00
Restaurant More samples 2019-02-11 20:55:45 +01:00
Shell Gallery More samples 2019-02-11 21:01:07 +01:00
SmartHotel Added more samples 2019-02-25 20:35:35 +01:00
Statify More samples 2019-02-11 20:55:45 +01:00
Tailwind Traders Added Tailwind Traders 2019-02-11 20:21:04 +01:00
Timeline More samples 2019-02-11 20:55:45 +01:00
Walkthrough Added more samples 2019-02-07 20:10:57 +01:00
Xamarin.NetFlix Added Xamarin.NetFlix 2019-02-07 19:40:04 +01:00
.gitattributes Added initial sample 2019-02-07 19:15:46 +01:00
.gitignore Added initial sample 2019-02-07 19:15:46 +01:00
README.md Updated README 2019-02-25 20:29:27 +01:00

README.md

Community Samples for VS4Mac Samples Importer addin

Community samples section for VS4Mac Samples Importer addin.

How can I add a sample?

Easy, just send a PR with your sample!. Remember to meet the following requirements:

  • Include the sample inside a folder in the root of the repository.
  • The folder name should be the name of the sample.
  • Inside the sample folder, create a Screenshots folder.
  • Include the file Metadata.xml inside your sample folder.
<?xml version="1.0" encoding="utf-8" ?>
<SampleMetadata>
    <Level>Intermediate</Level>
    <Tags>Xamarin.Forms, SkiaSharp</Tags>
    <SupportedPlatforms>Android, iOS</SupportedPlatforms>
    <Gallery>true</Gallery>
    <Brief>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam malesuada arcu id porta consequat. .</Brief>
    <Author>Javier Suarez</Author>
</SampleMetadata>

Or just include the DownloadUrl in the XML file without include the sample code in the repository:

<?xml version="1.0" encoding="utf-8" ?>
<SampleMetadata>
    <Level>Intermediate</Level>
    <Tags>Xamarin.Forms, SkiaSharp</Tags>
    <SupportedPlatforms>Android, iOS</SupportedPlatforms>
    <Gallery>true</Gallery>
    <Brief>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam malesuada arcu id porta consequat. .</Brief>
    <DownloadUrl>https://github.com/user/Sample/archive/master.zip</DownloadUrl>
    <Author>Javier Suarez</Author>
</SampleMetadata>

Code released under the MIT license.