Big Infromers SwiftUI - admiral-team/admiralui-ios GitHub Wiki

Struct

A view contains title label, description label and link button.


Declaration

public struct BigInformer: View

Overview

Informer is a component that used to show some information.

Configure a Big Informer View

For configuration a big informer view need to set title text, description text and text for link button.

BigInformer(
  title: "title",
  subtitle: "description",
  link: "link",
)

Also you can set style background for big informer. For example, if you want show information with error we recommend use style error.

BigInformer(
  style = .error
)

Contribution

You can help us to find bugs or ask us to add features.

  • To start issue please use ready-made templates.
  • To make changes to the repository, you need to create a fork of the project, make changes to the code and create a pull request in our project. You can read more about this in the Github documentation.