mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Fix bad names
This commit is contained in:
@ -5,22 +5,22 @@ import 'package:comunic/ui/widgets/icon_button_badge.dart';
|
||||
import 'package:comunic/ui/widgets/safe_state.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
/// Comunic tablet navbar widget
|
||||
/// Comunic tablet AppBar widget
|
||||
///
|
||||
/// @author Pierre Hubert
|
||||
|
||||
class ComunicTabletNavbarWidget extends StatefulWidget
|
||||
class ComunicTabletAppBarWidget extends StatefulWidget
|
||||
implements PreferredSizeWidget {
|
||||
@override
|
||||
_ComunicTabletNavbarWidgetState createState() =>
|
||||
_ComunicTabletNavbarWidgetState();
|
||||
_ComunicTabletAppBarWidgetState createState() =>
|
||||
_ComunicTabletAppBarWidgetState();
|
||||
|
||||
@override
|
||||
Size get preferredSize => Size.fromHeight(kToolbarHeight);
|
||||
}
|
||||
|
||||
class _ComunicTabletNavbarWidgetState
|
||||
extends SafeState<ComunicTabletNavbarWidget> {
|
||||
class _ComunicTabletAppBarWidgetState
|
||||
extends SafeState<ComunicTabletAppBarWidget> {
|
||||
var _unreadNotifications =
|
||||
CountUnreadNotifications(notifications: 0, conversations: 0);
|
||||
|
Reference in New Issue
Block a user