Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Features #4

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Commits on Nov 19, 2015

  1. Snackbars can now be displayed indefinitely.

    The latest revision of Google’s material design supports the concept of
    Snackbar widgets that are displayed indefinitely until the user
    performs an action that manually dismisses them.
    Nathan Russak committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    b4c266f View commit details
    Browse the repository at this point in the history
  2. Added a "tap to dismiss" gesture recognizer.

    Added a “canTopToDismiss” property that will enable / disable the
    ability to tap to dismiss a displayed Snackbar. This is helpful if an
    indefinitely displayed Snackbar is currently visible. The tap gesture
    is automatically removed if the user taps on the action button that way
    the user can’t dismiss the Snackbar while a long running action is
    taking place.
    Nathan Russak committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    393357b View commit details
    Browse the repository at this point in the history
  3. Added the ability to customize the Snackbar's appearance.

    Added public functions that allow the user to change the text color
    used by the Snackbar's message label and action button.
    Nathan Russak committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    c05f31e View commit details
    Browse the repository at this point in the history
  4. Added a fixed width constraint for iPad.

    Enhanced the logic behind defining the Snackbar's horizontal
    constraints. Behavior on phone based devices remains unchanged. But now
    if a Snackbar is presented on an iPad, it uses a fixed width of 400
    points and is centered horizontally.
    Nathan Russak committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    578c518 View commit details
    Browse the repository at this point in the history
  5. Code cleanup.

    Modified my code contributions to more closely resemble the code style
    of the original author.
    Nathan Russak committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    cab4190 View commit details
    Browse the repository at this point in the history
  6. Added the ability to display a SnackBar within a specific UIView.

    Added a new “showInView:” function that allows developers to add a
    SnackBar as a subview within a specific UIView.
    Nathan Russak committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    691d9b9 View commit details
    Browse the repository at this point in the history