-1

Child: text('hi'), style: new Textstyle()… ... This where I faced the error"the named parameter undefined" And I tried to reinstall the flutter and the intellij itself enter image description here

Reham.A
  • 21
  • 4
  • 1
    Please provide the [Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve). – CrazyCoder Jan 16 '19 at 22:01
  • And when I added after the text in child the following>>> style:new Textstyle ( color: colors.red), >>>>. I got an error (the named parameter undefined) – Reham.A Jan 17 '19 at 08:40
  • i edited the question and added an image , please view it @CrazyCoder – Reham.A Jan 17 '19 at 10:41

1 Answers1

1

In your code, you have:

...
home: new Scaffold(
        body: Center(
          child: Text('works!'),
          style: new TextStyle()
        )
...

But Center class doesn't have a style property:

/// A widget that centers its child within itself.
///
/// This widget will be as big as possible if its dimensions are constrained and
/// [widthFactor] and [heightFactor] are null. If a dimension is unconstrained
/// and the corresponding size factor is null then the widget will match its
/// child's size in that dimension. If a size factor is non-null then the
/// corresponding dimension of this widget will be the product of the child's
/// dimension and the size factor. For example if widthFactor is 2.0 then
/// the width of this widget will always be twice its child's width.
///
/// See also:
///
///  * [Align], which lets you arbitrarily position a child within itself,
///    rather than just centering it.
///  * [Row], a widget that displays its children in a horizontal array.
///  * [Column], a widget that displays its children in a vertical array.
///  * [Container], a convenience widget that combines common painting,
///    positioning, and sizing widgets.
///  * The [catalog of layout widgets](https://flutter.io/widgets/layout/).
class Center extends Align {
  /// Creates a widget that centers its child.
  const Center({ Key key, double widthFactor, double heightFactor, Widget child })
    : super(key: key, widthFactor: widthFactor, heightFactor: heightFactor, child: child);
}

So the error shown by DartAnalyser is correct and expected

lena
  • 90,154
  • 11
  • 145
  • 150