npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@flightgate/ui-kit

v0.1.0-beta.3

Published

Flightgate - UI Kit

Readme

@flightgate/ui-kit

Componentes, hooks, serviços e padrões para apps Expo/React Native.

Instalação

# No seu projeto Expo existente
npx expo install @flightgate/ui-kit

Depois instale as dependências nativas que você for usar:

# Obrigatórias (base)
npx expo install \
  expo-image \
  expo-secure-store \
  react-native-reanimated \
  react-native-gesture-handler \
  react-native-safe-area-context \
  react-native-svg

# Opcionais (instale só o que precisar)
npx expo install expo-av                    # áudio/vídeo e gravação
npx expo install expo-image-picker          # câmera e galeria
npx expo install expo-screen-capture        # proteção contra screenshot
npx expo install expo-font                  # fontes customizadas
npx expo install expo-clipboard             # copy/paste
npx expo install expo-file-system           # acesso a arquivos
npx expo install lottie-react-native        # animações Lottie
npx expo install lucide-react-native        # ícones
npx expo install react-native-modalize      # bottom sheets e modais
npx expo install react-native-toast-message # notificações toast
npx expo install react-native-tab-view      # abas tabulares
npx expo install react-native-compressor    # compressão de mídia
npx expo install styled-components          # tema dinâmico

Após instalar módulos nativos, rode npx expo prebuild e recompile o app.

Uso

Você escolhe o quanto quer usar — desde componentes visuais isolados até a arquitetura completa.

Nível 1 — Só componentes visuais

import { Button, Input, Text, Card } from '@flightgate/ui-kit';

export default function LoginScreen() {
  return (
    <Card>
      <Text fontSize="lg" bold>Bem-vindo</Text>
      <Input label="E-mail" placeholder="[email protected]" />
      <Button text="Entrar" onPress={() => {}} />
    </Card>
  );
}

Nível 2 — Componentes + Tema

// app/_layout.tsx
import { ThemeProvider } from '@flightgate/ui-kit';

const theme = {
  colors: {
    primary: '#6366F1',
    secondary: '#A5B4FC',
    // ...
  },
  fontSizes: { xs: 12, sm: 14, md: 16, lg: 18, xl: 22, xxl: 28 },
  spacings: { none: 0, xs: 4, sm: 8, md: 16, lg: 24, xl: 32, xxl: 48, xxxl: 64 },
  borderRadius: { none: 0, xs: 4, sm: 8, md: 12, lg: 16, full: 9999 },
};

export default function RootLayout() {
  return (
    <ThemeProvider theme={theme}>
      {/* seu app */}
    </ThemeProvider>
  );
}

Nível 3 — Arquitetura completa

// app/_layout.tsx
import {
  ThemeProvider,
  AuthProvider,
  PermissionsProvider,
  ModalProvider,
  ToastProvider,
  NetworkProvider,
} from '@flightgate/ui-kit';

export default function RootLayout() {
  return (
    <ThemeProvider theme={theme}>
      <NetworkProvider>
        <AuthProvider>
          <PermissionsProvider>
            <ToastProvider>
              <ModalProvider>
                {/* seu app */}
              </ModalProvider>
            </ToastProvider>
          </PermissionsProvider>
        </AuthProvider>
      </NetworkProvider>
    </ThemeProvider>
  );
}

Licença

MIT