2021年3月11日星期四

Problem with centering the flutter widget

There's a syntax error at "Center(". what could be wrong?

Here's the message i'm receiving: "Creates a widget that centers its child."

import 'package:flutter/material.dart';    class SplashPage extends StatelessWidget {    @override    Widget build(BuildContext context) {      return Scaffold(          backgroundColor: Colors.white,        Center(          child: Text(            'n',            style: TextStyle(              color: Colors.black,              fontSize: 90,              fontFamily: 'Aclonica',            ),          ),        ),      );    }  }  
https://stackoverflow.com/questions/66592670/problem-with-centering-the-flutter-widget March 12, 2021 at 08:52AM

没有评论:

发表评论