mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-21 14:29:12 +00:00
37 lines
No EOL
733 B
Dart
37 lines
No EOL
733 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:adguard_home_manager/models/app_screen.dart';
|
|
|
|
List<AppScreen> screensSelectServer = [
|
|
const AppScreen(
|
|
name: "connect",
|
|
icon: Icons.link_rounded,
|
|
),
|
|
const AppScreen(
|
|
name: "settings",
|
|
icon: Icons.settings_rounded,
|
|
)
|
|
];
|
|
|
|
List<AppScreen> screensServerConnected = [
|
|
const AppScreen(
|
|
name: "home",
|
|
icon: Icons.home_rounded,
|
|
),
|
|
const AppScreen(
|
|
name: "clients",
|
|
icon: Icons.devices,
|
|
),
|
|
const AppScreen(
|
|
name: "logs",
|
|
icon: Icons.list_alt_rounded,
|
|
),
|
|
const AppScreen(
|
|
name: "filters",
|
|
icon: Icons.shield_rounded,
|
|
),
|
|
const AppScreen(
|
|
name: "settings",
|
|
icon: Icons.settings_rounded,
|
|
)
|
|
]; |