17 lines
458 B
Dart
17 lines
458 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppName extends StatelessWidget {
|
|
const AppName({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: const [
|
|
Text("GEN", style: TextStyle(fontSize: 36, fontWeight: FontWeight.bold)),
|
|
Text("SO", style: TextStyle(fontSize: 36, fontWeight: FontWeight.bold, color: Colors.red)),
|
|
],
|
|
);
|
|
}
|
|
}
|