mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-04 20:30:35 +00:00
Project inicialization and base configuration
This commit is contained in:
commit
2d3a0f3244
76 changed files with 2386 additions and 0 deletions
19
lib/config/app_screens.dart
Normal file
19
lib/config/app_screens.dart
Normal file
|
@ -0,0 +1,19 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:adguard_home_manager/screens/home.dart';
|
||||
import 'package:adguard_home_manager/screens/settings.dart';
|
||||
|
||||
import 'package:adguard_home_manager/models/app_screen.dart';
|
||||
|
||||
const List<AppScreen> screens = [
|
||||
AppScreen(
|
||||
name: "home",
|
||||
icon: Icons.home_rounded,
|
||||
widget: Home()
|
||||
),
|
||||
AppScreen(
|
||||
name: "settings",
|
||||
icon: Icons.settings_rounded,
|
||||
widget: Settings()
|
||||
)
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue