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-snackbar-gfc

v1.0.0

Published

implement snackbar android

Downloads

3

Readme

SnackBarGFC - Android

Version Npm

Le plugin capacitor-snackbar-gfc est une implementation native du composant SnackBars d'Android. Vous pouvez maintenant utiliser ce package comme plugin Ionic Capacitor dans votre application.

Alt text

Soutenez nos développements

Votre don nous permettra de developper plus de plugin open source mais également a maintenir ceux déjà publiés pour garantir une compatibilité avec les future version d'android, d'ios et de capacitor. Merci de votre soutien !

Je fais un don

Sommaire

  1. Plateformes prise en charge
  2. Installation
    2.1 Récuperation du package sur npm
    2.2 Ajout du plugin dans votre MainActivity.java
  3. Screenshot
  4. Méthodes du plugin
  5. Interfaces du plugin
    5.1 SnackbarOpts
    5.2 MessageStyleOpts
    5.3 ButtonActionStyleOpts
  6. Enums du plugin
    6.1 DURATION_ENUM
    6.2 POSITION_ENUM
    6.3 TYPE_LINE_ENUM
  7. Utilisation du plugin
    7.1 Intégration du plugin
    7.2 Méthode show(options:SnackbarOpts)
    7.3 Méthode dismissShowingSnackbar()
    7.4 Méthode addListener('snackbarEvent')
  8. Demo
  9. Nos autres plugins

1. Plateformes prise en charge

  • [x] Android

2. Installation

2.1 Récuperation du package sur npm

npm install capacitor-snackbar-gfc --save

2.2 Ajout du plugin dans votre MainActivity.java

Le fichier MainActivity est disponible dans app/java/packageid/ depusi android studio

    // Autres imports...
    import com.gfc.snackbargfc.SnackBarGFC;
    
    public class MainActivity extends BridgeActivity {
      @Override
      public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    
        this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
    
          add(SnackBarGFC.class);  // Ajout du plugin SnackBarGFC 
    
        }});
      }
    }

3. Screenshot

| Message seulement | Message seulement + centré | Message seul + Multiline | |---------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Alt text |Alt text |Alt text |

| Basic + changement couleur bouton + multiline | Changement de couleur + Message centré + multiline | Changement de couleur | |---------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Alt text |Alt text |Alt text |

4. Méthodes du plugin

| Methodes | Android | |:----------------------------------------------------------------------------------------|:----------| | show(option: SnackbarOpts): Promise<{}> | Disponible| | dismissShowingSnackbar() | Disponible| | addListener(eventName: 'snackbarEvent', listenerFunc: () => void): PluginListenerHandle | Disponible|

5. Interfaces du plugin

5.1 SnackbarOpts

| Propriété | Etat | Type | Defaut | Commentaire | |:------------------|:------------|:---------------------------------------------------|:---------|:-----------------------------------------------------------------------------------------------------------------------| | message | Obligatoire | string | null | Si message est null alors il y a une erreur | | duration | Obligatoire | DURATION_ENUM | 'short' | Si buttonAction est à true et duration à indefinite alors c'est la valeur long qui est prise en compte | | messageStyle | Obligatoire | MessageStyleOpts | Object | il faut renseigner la propriété messagePosition et messageTypeLine | | buttonAction | Obligatoire | boolean | 'false' | La SnackBar contiendra un bouton si buttonAction est à true | | buttonActionStyle | Optionel | ButtonActionStyleOpts | Object | Si buttonAction est à true il faudra renseigner la propriété buttonActionText | | backgroundColor | Optionel | string | '#4A4747'| Les couleurs devront commencer par # et contenir 7 caractères (ex: #4A4747) |

5.2 MessageStyleOpts

| Propriété | Etat | Type | Defaut | Commentaire | |:----------------|:------------|:-------------------------------------|:----------|:----------------------------------------------------------------------------| | messagePosition | Obligatoire | POSITION_ENUM | null | | | messageTypeLine | Obligatoire | TYPE_LINE_ENUM | 'default' | | | messageMaxLine | Optionel | number | 5 | A renseigner uniquement si messageTypeLine est égale à multiline | | messageColor | Optionel | string | '#FFFFFF' | Les couleurs devront commencer par # et contenir 7 caractères (ex: #FFFFFF) |

5.3 ButtonActionStyleOpts

| Propriété | Etat | Type | Defaut | Commentaire | |:------------------|:------------|:-------|:----------|:----------------------------------------------------------------------------| | buttonActionText | Obligatoire | string | null | | | buttonActionColor | Optionel | string | '#E35A5A' | Les couleurs devront commencer par # et contenir 7 caractères (ex: #FFFFFF) |

6. Enums du plugin

6.1 DURATION_ENUM

| Propriété | Valeur | |:----------|:-------------| | SHORT | 'short' | | LONG | 'long' | | INDEFINITE| 'indefinite' |

6.2 POSITION_ENUM

| Propriété| Valeur | |:---------|:----------| | DEFAULT | 'default' | | CENTER | 'center' |

6.3 TYPE_LINE_ENUM

| Propriété| Valeur | |:---------|:------------| | DEFAULT | 'default' | | MULTILINE| 'multiline' |

7. Utilisation du plugin

7.1 Intégration du plugin

// Autres imports...
import{Plugins} from '@capacitor/core'
const {SnackBarGFC} = Plugins;

7.2 Méthode show(options: SnackbarOpts)

const opts: SnackbarOpts = {
                message: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
                duration: DURATION_ENUM.INDEFINITE,
                messageStyle: {
                    messagePosition: POSITION_ENUM.DEFAULT,
                    messageTypeLine: TYPE_LINE_ENUM.DEFAULT,
                    messageColor: '#F0F0F0'
                },
                buttonAction: true,
                buttonActionStyle: {
                    buttonActionText: 'Close',
                    buttonActionColor: '#BA85FA'
                },
                backgroundColor: '#292929'
           }

SnackBarGFC.show(opts);

7.3 Méthode dismissShowingSnackbar()

    ionViewWillLeave() {
        SnackBarGFC.dismissShowingSnackbar();
    }

7.4 Méthode addListener('snackbarEvent')

Cette évenement est déclenché lorsque l'utilisateur clique sur le bouton du composant

    ngOnInit() {
        SnackBarGFC.addListener('snackbarEvent', () => {
            // votre code...
        });
    }

8. Demo du plugin

Téléchargez notre demo.

9. Nos autres plugins

| Nom | Package | Version | Plateformes | |:-----------------|:---------------------------------|:--------|:------------| | AppRateGFC | capacitor-apprate-gfc | Version Npm | Android | | DateTimePickerGFC | capacitor-datetimepicker-gfc | Version Npm | Android | | CalendarEventGFC | capacitor-calendarevent-gfc | Version Npm | Android |