Change App Bar Title Text Color
Complete Code For Change App Bar Title Text Color In Flutter
main.dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: Text('Set App Bar Title Text Color',
style: TextStyle(color: Color(0xFF9CCC65)),
),
backgroundColor: Color(0xFF33691E),
),
body: Center(
child: Text('Set App Bar Title Text Color',
style: TextStyle(fontSize: 24),)
)
)
);
}
}