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 🙏

© 2024 – Pkg Stats / Ryan Hefner

capacitor-native-pulldown

v0.0.2

Published

This plugin provides native access to iOS pulldown in your React/Capacitor.js apps on iOS

Downloads

1

Readme

pulldown list capacitor plugin for iOS

a capacitor plugin that provides a native iOS pull-down list implementation using SwiftUI and UIKit. this plugin is using Apple's SF Symbols library for icons. if you need help implementing this feel free to DM!

note: this plugin is still work in progress, i might be releasing more native implementations to use within your beautiful react apps with that native feel!

installation

npm install capacitor-native-pulldown
npx cap sync

usage

import the PulldownList plugin and see the calling methods in docs bellow :)

basic react component example

import React, { useEffect } from 'react';
import { PulldownList } from 'capacitor-native-pulldown';

const App = () => {
  
  const onShow = async () => {
    // this emits the coordinates to render your pulldown natively in ios
    await PulldownList.show({ x: 50, y: 100 });
  }

  useEffect(() => {
    await PulldownList.setContent([
      { id: 'voleume-off', title: 'Volume Off', icon: 'speaker.wave.2.fill' },
      { id: 'add-to-favourites', title: 'Add to Favourites', icon: 'star.fill' }
    ]);

    PulldownList.addListener('itemSelected', (item) => {
      // listen for changes on the dropdown
      console.log(item)
    });

    return () => console.log("forgot to implement removeListener(). will fix lol")
  }, [])

  return (
    <div onClick={onShow}>
      <h1>Settings</h1>
    </div>
  );
};

export default App;

API

setContent(items: PulldownListItem[]): Promise<void>;

sets the content of the pull-down list with an array of items.

parameters

  • items: an array of objects representing the items in the pull-down list. each object should contain the following properties:
    • id (string): a unique identifier for the item.
    • title (string): the text to display for the item.
    • icon (string, optional): the SF Symbols icon name to display alongside the item's text (e.g., 'speaker.wave.2.fill').

show(options: ShowOptions): Promise<void>

displays the pull-down list and sets its position on the screen.

parameters

  • options: an object containing the x and y coordinates (numeric) that represent the position of the pull-down list on the screen.

setPosition(x: number, y: number): Promise<void>

sets the position of the pull-down list on the screen.

note: this method is not needed in the current implementation, as the position is set in the show() method. i'll probably remove or implement this later.

addListener(eventName: 'itemSelected', listenerFunc: (item: PulldownListItem) => void): PluginListenerHandle;

adds a listener to handle the 'itemSelected' event. use this to receive information about the selected item when a user selects an item within the pull-down list.

parameters

  • eventName: the event name string 'itemSelected'.
  • listenerFunc: a function that will be called when the 'itemSelected' event is triggered. it receives the selected item as a parameter.