All Projects → gorhom → showcase-template

gorhom / showcase-template

Licence: MIT license
A React Native template that helps developers to showcase their amazing libraries examples.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
Handlebars
879 projects

Projects that are alternatives of or similar to showcase-template

Robe React Ui
Robe React UI Components
Stars: ✭ 133 (+166%)
Mutual labels:  showcase
Sapic
A useful tool to crop your Steam profile background for showcases.
Stars: ✭ 189 (+278%)
Mutual labels:  showcase
openui5-tour
OpenUI5 Tour enables an user-friendly way to showcase products and features in your website.
Stars: ✭ 21 (-58%)
Mutual labels:  showcase
Automatic Gatsbyjs App Landing Page
Automatic GatsbyJS App Landing Page - Automatically generate iOS app landing page using GatsbyJS
Stars: ✭ 137 (+174%)
Mutual labels:  showcase
Kross Hugo
Kross Creative Portfolio Template
Stars: ✭ 172 (+244%)
Mutual labels:  showcase
Evoli
An ecosystem-simulation game made with Amethyst
Stars: ✭ 212 (+324%)
Mutual labels:  showcase
Laravel Seo
SEO package made for maximum customization and flexibility
Stars: ✭ 130 (+160%)
Mutual labels:  showcase
haxeflixel.com
haxeflixel.com docpad source
Stars: ✭ 57 (+14%)
Mutual labels:  showcase
Posse gallery
Posse's fancy new gallery for Flutter.
Stars: ✭ 174 (+248%)
Mutual labels:  showcase
Android-Showcase
📱 Android showcase app
Stars: ✭ 19 (-62%)
Mutual labels:  showcase
Theta Wave
A space shooter game made with Amethyst and Rust.
Stars: ✭ 144 (+188%)
Mutual labels:  showcase
Awesomedialog
A Beautiful Dialog Library for Kotlin Android
Stars: ✭ 163 (+226%)
Mutual labels:  showcase
Multilamp
Android library to showcase/highlight the multiple views on same overlay
Stars: ✭ 233 (+366%)
Mutual labels:  showcase
Laravel Queue Monitor
Monitoring Laravel Jobs with your Database
Stars: ✭ 136 (+172%)
Mutual labels:  showcase
VinylShop
https://dribbble.com/shots/4996346-Vinyl-Shop-mobile-app
Stars: ✭ 30 (-40%)
Mutual labels:  showcase
Kickmaterial
Crowdfunding app concept for Android. Created to showcase new trends in Android development with strong focus on Material Design.
Stars: ✭ 1,649 (+3198%)
Mutual labels:  showcase
Whatsnewkit
Showcase your awesome new app features 📱
Stars: ✭ 2,329 (+4558%)
Mutual labels:  showcase
isopaint
Isometric Painting Tool on HTML5 canvas
Stars: ✭ 58 (+16%)
Mutual labels:  showcase
MultiPy
MultiPy lets you conveniently keep track of your python scripts for personal use or showcase by loading and grouping them into categories. It allows you to either run each script individually or together with just one click.
Stars: ✭ 56 (+12%)
Mutual labels:  showcase
digital champions deeplearning r mxnet
Showcase for using R + MXNET along with AWS and bitfusion for deep learning.
Stars: ✭ 20 (-60%)
Mutual labels:  showcase

Showcase Template

npm npm npm runs with expo

A React Native template that helps developers to showcase their amazing libraries examples.


Installation

yarn add @gorhom/showcase-template
# or
npm install @gorhom/showcase-template

Usage

import React from 'react';
import { Alert } from 'react-native';
import Showcase from '@gorhom/showcase-template';

const DemoScreen = () => (
  <View>
    <ShowcaseLabel>Demo Screen</ShowcaseLabel>
  </View>
);

const data = [
  {
    title: 'Group 1',
    data: [
      {
        name: 'Default',
        slug: 'default',
        getScreen: () => DemoScreen,
      },
      {
        name: 'Example A',
        slug: 'example-a',
        getScreen: () => DemoScreen,
      },
      {
        name: 'Example B',
        slug: 'example-b',
        getScreen: () => DemoScreen,
      },
    ],
  },
  {
    title: 'Group 2',
    data: [
      {
        name: 'Example C',
        slug: 'example-c',
        getScreen: () => DemoScreen,
      },
      {
        name: 'Example D',
        slug: 'example-d',
        getScreen: () => DemoScreen,
      },
    ],
  },
];

export default function App() {
  return (
    <Showcase
      version="0.0.0"
      name="Awesome Library"
      description="It can do anything 🤯"
      author={{
        username: '@gorhom',
        url: 'https://twitter.com/gorhom',
      }}
      data={data}
    />
  );
}

Built With ❤️

Author

License

MIT


Mo Gorhom

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].