Tharindu Kumarasiri
Tharindu Kumarasiri

Reputation: 56

Undefined name 'Colors'. when using TextStyle class in Flutter

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),
    ),
  ),
);

Error shows in IDE

Upvotes: 2

Views: 2416

Answers (1)

Thắng Mai
Thắng Mai

Reputation: 1061

Please, make sure you have included:

import 'package:flutter/material.dart';

Upvotes: 5

Related Questions