# App Settings Screen
Complete the following steps to configure settings.
Create a file
lib/services/settings/settings.dartAdd latest url_launcher (opens new window) package to pubspec.yaml
Download settings folder from here (opens new window) and add it inside
lib/services/folderThis can be used in any Scaffold as drawer like
import 'package:flutter/material.dart';
import 'package:huntfitnessapp/services/settings/settings.dart';
class Dashboard extends StatefulWidget {
const Dashboard({super.key});
State<Dashboard> createState() => _DashboardState();
}
class _DashboardState extends State<Dashboard> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Dashboard"),
),
drawer: const DrawerSettings(),
);
}
}