Skip to content

Instantly share code, notes, and snippets.

@codesxt
Created October 4, 2023 17:24
Show Gist options
  • Save codesxt/1a59bab4def71289077b35078abafd38 to your computer and use it in GitHub Desktop.
Save codesxt/1a59bab4def71289077b35078abafd38 to your computer and use it in GitHub Desktop.
Flutter Navigation Example
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Ejemplo de Navegación'),
debugShowCheckedModeBanner: false,
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int page = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: [
const FirstPage(),
const SecondPage(),
][page],
bottomNavigationBar: NavigationBar(
selectedIndex: page,
onDestinationSelected: (value) {
page = value;
setState(() {});
},
destinations: const [
NavigationDestination(
icon: Icon(Icons.home),
label: 'Inicio',
),
NavigationDestination(
icon: Icon(Icons.settings),
label: 'Ajustes',
),
],
),
);
}
}
class FirstPage extends StatelessWidget {
const FirstPage({super.key});
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ElevatedButton(
onPressed: () async {
MaterialPageRoute<bool> route = MaterialPageRoute(
builder: (context) {
return Scaffold(
appBar: AppBar(
title: const Text('Nueva Pantalla'),
),
body: Center(
child: FilledButton(
onPressed: () {
Navigator.of(context).pop(true);
},
child: const Text('Volver'),
),
),
);
},
);
bool? value = await Navigator.of(context).push(route);
print(value);
},
child: const Text(
'Navegar a otra pantalla',
),
),
],
),
);
}
}
class SecondPage extends StatelessWidget {
const SecondPage({super.key});
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ElevatedButton(
onPressed: () {
showModalBottomSheet(
context: context,
builder: (BuildContext context) {
return Container(
padding: const EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Center(
child: Container(
width: 50,
height: 10,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
color: Colors.grey,
),
),
)
],
),
);
},
);
},
child: const Text(
'Desplegar BottomSheet',
),
),
],
),
);
}
}
@codesxt
Copy link
Author

codesxt commented Oct 4, 2023

Vistas previas del resultado:

Screenshot_1696440484

Screenshot_1696440487

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment