Skip to main content
Give us your valuable feedback

It will help us understand how we can serve you better

Give feedback

Development

Configuration

Configuration for setup Legion to your development

banner-Configuration

Import Theme

Legion iOS have 5 Themes

steps installation
import ThemeAGR
import ThemeEazy
import ThemeIHS
import LegionUI
import ThemeMyTEnS

Step

  1. Open App page
  2. Import your THEME. example : import LegionUI
  3. Import FirebaseCore
  4. Add the following code snippet in the root page of project
import SwiftUI
import LegionUI
@main
struct LegionPrototypeApp: App {
@UIApplicationDelegateAdaptor(AppDelegate.self) var delegate
var body: some Scene {
WindowGroup {
ContentView()
  1. Open ContentView
  2. Import your THEME. example : import LegionUI
  3. Add the following code snippet in the view page of project
import SwiftUI
import LegionUI
struct ContentView: View {
var body: some View {
LGNSolidButton(title: "title")
}
}