cleared console problems
This commit is contained in:
@@ -41,7 +41,7 @@ class _DesktopNotificationPageState extends State<DesktopNotificationPage>
|
||||
backgroundColor: AppColors.backgroundColor,
|
||||
body: Column(
|
||||
children: [
|
||||
DesktopNavigationWidget(currentIndex: 3),
|
||||
const DesktopNavigationWidget(currentIndex: 3),
|
||||
|
||||
SizedBox(height: 60.0.h()),
|
||||
|
||||
|
||||
@@ -80,7 +80,7 @@ class _MobileNotificationPageState extends State<MobileNotificationPage>
|
||||
Expanded(
|
||||
child: TabBarView(
|
||||
controller: controller,
|
||||
children: [
|
||||
children: const [
|
||||
NotificationAllTab(),
|
||||
NotificationUnreadTab(),
|
||||
NotificationImportantTab(),
|
||||
|
||||
@@ -11,7 +11,7 @@ class NotificationScreen extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
SizeConfig.init(context);
|
||||
return ResponsiveBuilder(
|
||||
return const ResponsiveBuilder(
|
||||
mobile: MobileNotificationPage(),
|
||||
tablet: TabletNotificationPage(),
|
||||
desktop: DesktopNotificationPage(),
|
||||
|
||||
@@ -45,7 +45,7 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
|
||||
title: NotificationStrings.notificationTitle,
|
||||
key: key,
|
||||
),
|
||||
drawer: TabletNavigationWidget(currentIndex: 3),
|
||||
drawer: const TabletNavigationWidget(currentIndex: 3),
|
||||
body: Center(
|
||||
child: SizedBox(
|
||||
width: 720,
|
||||
@@ -92,7 +92,7 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
|
||||
Expanded(
|
||||
child: TabBarView(
|
||||
controller: controller,
|
||||
children: [
|
||||
children: const [
|
||||
NotificationAllTab(),
|
||||
NotificationUnreadTab(),
|
||||
NotificationImportantTab(),
|
||||
|
||||
Reference in New Issue
Block a user