Skip to content

A Framer Studio module for adding Android Material Design Snackbars to your project

Notifications You must be signed in to change notification settings

imaaronjames/Simple-Android-Snackbar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

Simple Android Snackbar

A Framer Studio module for adding Android Material Design Snackbars to your project

Installation

  1. Download the androidSnackbar.coffee file.
  2. Create a new Framer project and add androidSnackbar.coffee to your /modules folder.
  3. Add Android = require 'androidSnackbar' at the top of your document.

Sample Project can be found here.

More info about modules for Framer Studio: FramerJS Docs - Modules

TextLayer

How to use this module

You only need one line of code to make Simple Android Snackbars work. It looks a little something like this:

    Android.Snackbar("Snackbar is one line by default.")

Simple yet powerful customization

There are three parameters you can change: keyboardType, keyboardTheme, and hasAutoCorrect

    snackbarMessage (string) -- Add your custom message

    actionText (string) -- Add your custom action text. if null, the button will be turned off.

    textColor (string) -- You can change the color of the action button using rgba()

    twoLines (boolean) -- true = multi-line snackbar, false = single-line snackbar

Adding Events to the action button

Any Event can be assigned to the snackbar action button. To do this, use this line:

    snackbarActionBTN.on Events.Click, ->


That's it! the snackbar layers will automatically animate in and out for you. When the layers animate out, they will be destroyed for you. Simple.

About

A Framer Studio module for adding Android Material Design Snackbars to your project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages