kopia lustrzana https://gitlab.com/mysocialportal/relatica
28 wiersze
630 B
Dart
28 wiersze
630 B
Dart
![]() |
import 'package:flutter/material.dart';
|
||
|
|
||
|
import '../controls/app_bottom_nav_bar.dart';
|
||
|
|
||
|
class NotificationsScreen extends StatelessWidget {
|
||
|
const NotificationsScreen({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
appBar: AppBar(
|
||
|
title: Text('Notifications'),
|
||
|
),
|
||
|
body: Center(
|
||
|
child: Column(
|
||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||
|
children: [
|
||
|
Text('Notifications'),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
bottomNavigationBar: AppBottomNavBar(
|
||
|
currentButton: NavBarButtons.notifications,
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|