23 lines
538 B
Dart
23 lines
538 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class TopLogo extends StatelessWidget {
|
|
const TopLogo({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 12.0,vertical: 8),
|
|
child: Row(
|
|
children: [
|
|
FlutterLogo(),
|
|
const SizedBox(width: 8,),
|
|
Text(
|
|
'Flutter Books',
|
|
style: TextStyle(color: Colors.white,fontWeight: FontWeight.bold,fontSize: 16),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|