Skip to main content
Give us your valuable feedback

It will help us understand how we can serve you better

Give feedback

Components

Snackbar

Snackbar displays informative text

banner-Snackbar
Component Status Details

Status component contains a list of checks and completeness that has been tested and owned by each component

We don't use color as the only visual tool to convey information.
The component’s structure and properties include relevant options such as variant, style, size, orientation, optional iconography, decorations, selection, error state, etc. The title is the component name that uses the frame base component template. The base component name contains: .Base & "Component Name" if there is more than one. All component properties use the Legion foundation.
We can change all the parts that are connected to the component base. The inside of the base component remains connected to the master component. All variant options are not damaged when we change from one to another. Overriding changes to components will not reset other variants.
Component's already has component specs documentation.

Status

Resources

Usage

Snackbars notify users of processes that have been or will be performed by the app. They appear temporarily, towards the bottom of the screen. They must not interfere with the user experience, and they do not require user input to disappear. Snackbars are often used as tooltips/popups to show a message at the bottom of the screen.

Use Legion snackbar styles to modify snackbar with lots of attributes that make you easier.

Usage Default LegionUI

struct ContentView: View {
var body: some View {
YourOutmostView {
//your screen content
}.snackbar(isShowing: .constant(true))
}
}
extension View {

Usage Theme

ThemeAGR, ThemeMyTEnS, ThemeIHS & ThemeEazy

struct ContentView: View {
var body: some View {
YourOutmostView {
//your screen content
}.snackbar(isShowing: .constant(true))
}
}
extension View {

3 Apparances of Snackbar :

  • Left content : Trailing avatar, Trailing icon, or no left content
  • Title : Title only, or title with description (subtitle)
  • Right content : Text button or icon button. Text and icon are customizable

Customize the colors, in order to adapt with your app color token Text Color & Background Color

Variant

This code sample demonstrates how to modify the variant of the snackbar :

Default LegionUI

LGNSnackbar(
isShowing: isShowing,
parent: { self },
title: "Message is shown"
)

ThemeAGR, ThemeMyTEnS, ThemeIHS & ThemeEazy

Snackbar(
isShowing: isShowing,
parent: { self },
title: "Message is shown"
)

Attribute

Legion Have 4 Attributes for Costumize Snackbar

ThemeAGR

This code sample demonstrates of the snackbar :
struct ContentView: View {
var body: some View {
YourOutmostView {
//your screen content
}.snackbar(isShowing: .constant(true))
}
}
extension View {

ThemeMyTEnS

This code sample demonstrates of the snackbar :
struct ContentView: View {
var body: some View {
YourOutmostView {
//your screen content
}.snackbar(isShowing: .constant(true))
}
}
extension View {

ThemeIHS

This code sample demonstrates of the snackbar :
struct ContentView: View {
var body: some View {
YourOutmostView {
//your screen content
}.snackbar(isShowing: .constant(true))
}
}
extension View {

ThemeEazy

This code sample demonstrates of the snackbar :
struct ContentView: View {
var body: some View {
YourOutmostView {
//your screen content
}.snackbar(isShowing: .constant(true))
}
}
extension View {

Properties

PropertiesDescriptionDefault Value
isShowingthe binding that decides the appropriate drawing in the body.
parentparent view to which this snackbar shall be attached
positionplace on the screen where the snackbarr should appear. .top, .center, or .bottom.bottom
titlethe main text you want to display on snackbar
titleFontFamilyfontFamily of your title""
titleColortext color of your titleColor.LGNTheme.tertiary900
subtitlethe describtion or subtitle text you want to display on snackbar""
subtitleFontFamilyfontFamily of your subtitle""
subtitleColortext color of your subtitleColor.LGNTheme.tertiary600
backgroundColoryour snackbar background color.white
leadingIconthe icon you want to display on the left hand side of your snackbar textnil
leadingIconTintyour leadingIcon color tint.black
leadingAvatarUrlwhen you want to display avatar instead of icon on the left, fill this with image url""
trailingButtonTexttext string to display on the action button of your snackbar’s right hand side""
trailingButtonTextTintyour trailingButtonText tint colorColor.LGNTheme.primary500
trailingButtonIconwhen you have no text to display as a trailing button, this icon image will be used insteadImage(systemName: "xmark")
trailingButtonIconTintyour trailingButtonIcon tint color.black
trailingButtonActionadditional action to trigger when user taps on the trailing action button{ }

Example Project

LGNSnackbar(
isShowing: isShowing,
parent: { self },
position: .bottom,
title: "Title",
titleFontFamily: "Montserrat-Bold",
titleColor: Color.LGNTheme.tertiary900,
subtitle: "Snackbar message..",
subtitleFontFamily: "Montserrat-Ultralight",

Important Notes

  • Left content can only display either avatar or icon. If you put on both values, only avatar will be displayed
  • Right content can only display one button i.e. text button, or icon button. If you put on both, only text button will appear
  • If you do not specify right content, it will always display right icon button with the default xmark icon.