Reputation: 56
I'm new to flutter, I'm getting an error Undefined name 'Colors'. when using Colors. in TextStyle class
Widget nameCode() => Expanded(
flex: 1,
child: Center(
child: Text(
'GAIN',
style: TextStyle(
color: Colors.blue),
),
),
);
Upvotes: 2
Views: 2416
Reputation: 1061
Please, make sure you have included:
import 'package:flutter/material.dart';
Upvotes: 5