# App Settings Screen

Complete the following steps to configure settings.

  1. Create a file lib/services/settings/settings.dart

  2. Add latest url_launcher (opens new window) package to pubspec.yaml

  3. Download settings folder from here (opens new window) and add it inside lib/services/ folder

  4. This 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(),
    );
  }
}