backup.
This commit is contained in:
25
lib/widgets/general/navigationbar_logo.dart
Normal file
25
lib/widgets/general/navigationbar_logo.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class NavigationBarLogo extends StatelessWidget {
|
||||
const NavigationBarLogo({Key key}) : super(key: key);
|
||||
|
||||
static const IconData logoData = IconData(
|
||||
0xe800,
|
||||
fontFamily: 'wisetronic',
|
||||
fontPackage: null
|
||||
);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return SizedBox(
|
||||
height: 48,
|
||||
width: 178,
|
||||
child: Icon(
|
||||
logoData,
|
||||
color: Colors.white,
|
||||
size: 48.0,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user