mirror of
https://github.com/nostrlabs-io/zap-stream-flutter.git
synced 2025-06-15 19:48:23 +00:00
26 lines
666 B
Dart
26 lines
666 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:zap_stream_flutter/widgets/button.dart';
|
|
|
|
class SettingsPage extends StatelessWidget {
|
|
const SettingsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
spacing: 8,
|
|
children: [
|
|
Text("Settings", style: TextStyle(fontSize: 24)),
|
|
BasicButton.text(
|
|
"Edit Profile",
|
|
onTap: (context) => context.push("/settings/profile"),
|
|
),
|
|
BasicButton.text(
|
|
"Wallet Settings",
|
|
onTap: (context) => context.push("/settings/wallet"),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|