¿Cómo configuro el color de fondo de mi pantalla principal en Flutter?

88

Estoy aprendiendo Flutter y estoy comenzando desde lo básico. No estoy usando MaterialApp. ¿Cuál es una buena forma de establecer el color de fondo de toda la pantalla?

Esto es lo que tengo hasta ahora:

import 'package:flutter/material.dart';

void main() {
  runApp(new MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return new Center(child: new Text("Hello, World!"));
  }
}

Algunas de mis preguntas son:

  • ¿Cuál es una forma básica de establecer el color de fondo?
  • ¿Qué estoy mirando exactamente en la pantalla? ¿Qué código "es" el fondo? ¿Hay algo para establecer el color de fondo? Si no es así, ¿qué es un "fondo simple" simple y apropiado (para pintar un color de fondo)?

¡Gracias por la ayuda!

El código anterior genera una pantalla negra con texto blanco: ingrese la descripción de la imagen aquí

Seth Ladd
fuente

Respuestas:

76

Creo que también puedes usar un andamio para hacer el fondo blanco. Aquí hay un fragmento de código que puede ayudar.

import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
  @override
    Widget build(BuildContext context) {

      return new MaterialApp(
        title: 'Testing',
        home: new Scaffold(
        //Here you can set what ever background color you need.
          backgroundColor: Colors.white,
        ),
      );
    }
}

Espero que esto ayude 😊.

A.DURGAPRASAD
fuente
Quiero dar color azul para el borde y ámbar para el color de fondo del contenedor, ¿cómo puedo hacerlo?
Kamlesh
73

Puede establecer el color de fondo para Todos los andamios en la aplicación a la vez.

simplemente configure scaffoldBackgroundColor: en ThemeData

 MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(scaffoldBackgroundColor: const Color(0xFFEFEFEF)),
      home: new MyHomePage(title: 'Flutter Demo Home Page'),
    );
Sirelon
fuente
4
Esto es lo que se requiere para tener el mismo color de fondo en todas las páginas (principalmente andamios). Gracias.
iCrus
1
Excelente respuesta, especialmente si usa enrutamiento y navegación (mucho mejor que crear un widget de orden superior de Skaffold y usarlo en todos los widgets de nivel superior).
Nader Ghanbari
42

Aquí hay una forma en que encontré para hacerlo. No sé si hay mejores formas o cuáles son las compensaciones.

El contenedor "intenta ser lo más grande posible", según https://flutter.io/layout/ . Además, Container puede tomar un decoration, que puede ser un BoxDecoration , que puede tener uncolor (que es el color de fondo).

Aquí hay una muestra que de hecho llena la pantalla de rojo y pone "¡Hola, mundo!" en el centro:

import 'package:flutter/material.dart';

void main() {
  runApp(new MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return new Container(
      decoration: new BoxDecoration(color: Colors.red),
      child: new Center(
        child: new Text("Hello, World!"),
      ),
    );
  }
}

Tenga en cuenta que MyApp build () devuelve el contenedor. El Contenedor tiene una decoración y un niño, que es el texto centrado.

Véalo en acción aquí:

ingrese la descripción de la imagen aquí

Seth Ladd
fuente
3
El contenedor es una buena opción si está creando una aplicación simple o una aplicación que no usa Material design. Si está creando una aplicación Material, considere usar ThemeData.dark () si desea un fondo oscuro en todos sus lienzos y tarjetas. También puede obtener un control detallado sobre los colores de fondo de la tarjeta y el lienzo utilizando los argumentos cardColor y canvasColor para el constructor ThemeData. docs.flutter.io/flutter/material/ThemeData/ThemeData.html
Collin Jackson
1
¿Qué hay de configurar RGB personalizado?
Nirav Madariya
Quiero dar color azul para el borde y ámbar para el color de fondo del contenedor, ¿cómo puedo hacerlo?
Kamlesh
No estoy usando Scaffold y esta solución es increíble. Gracias.
Edgar Froes
27

Hay muchas formas de hacerlo, aquí enumero algunas.

  1. Utilizando backgroundColor

    Scaffold(
      backgroundColor: Colors.black,
      body: Center(...),
    )
    
  2. Usando ContainerenSizedBox.expand

    Scaffold(
      body: SizedBox.expand(
        child: Container(
          color: Colors.black,
          child: Center(...)
        ),
      ),
    )
    
  3. Utilizando Theme

    Theme(
      data: Theme.of(context).copyWith(scaffoldBackgroundColor: Colors.black),
      child: Scaffold(
        body: Center(...),
      ),
    )
    
CopsOnRoad
fuente
7
Scaffold(
      backgroundColor: Constants.defaulBackground,
      body: new Container(
      child: Center(yourtext)

      )
)
Hunnain Pasha
fuente
4

En el ejemplo básico de Flutter se puede configurar con backgroundColor: Colors.Xde Scaffold

  @override
 Widget build(BuildContext context) {
   // This method is rerun every time setState is called, for instance as done
  // by the _incrementCounter method above.
   //
  // The Flutter framework has been optimized to make rerunning build methods
   // fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return Scaffold(
  backgroundColor: Colors.blue,
  body: Center(
    // Center is a layout widget. It takes a single child and positions it
    // in the middle of the parent.
    child: Column(
      // Column is also layout widget. It takes a list of children and
      // arranges them vertically. By default, it sizes itself to fit its
      // children horizontally, and tries to be as tall as its parent.
      //
      // Invoke "debug painting" (press "p" in the console, choose the
      // "Toggle Debug Paint" action from the Flutter Inspector in Android
      // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
      // to see the wireframe for each widget.
      //
      // Column has various properties to control how it sizes itself and
      // how it positions its children. Here we use mainAxisAlignment to
      // center the children vertically; the main axis here is the vertical
      // axis because Columns are vertical (the cross axis would be
      // horizontal).
      mainAxisAlignment: MainAxisAlignment.center,
      children: <Widget>[
        Text(
          'You have pushed the button this many times:',
        ),
        Text(
          '$_counter',
          style: Theme.of(context).textTheme.display1,
        ),
      ],
    ),
  ),
  floatingActionButton: FloatingActionButton(
    onPressed: _incrementCounter,
    tooltip: 'Increment',
    child: Icon(Icons.add_circle),
  ), // This trailing comma makes auto-formatting nicer for build methods.
);
}
Ozan
fuente
4

debe devolver el widget de Scaffold y agregar su widget dentro de Scaffold

chupar como este código:

import 'package:flutter/material.dart';

void main() {
  runApp(new MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return Scaffold(
          backgroundColor: Colors.white,
          body: Center(child: new Text("Hello, World!"));
    );
  }
}
Alireza
fuente
2

Creo que necesitas usar un MaterialAppwidget y usar themey configurar primarySwatchcon el color que quieras. parece el siguiente código,

import 'package:flutter/material.dart';

void main() {
  runApp(new MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}
iPatel
fuente
1

y es otro enfoque para cambiar el color del fondo:

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(home: Scaffold(backgroundColor: Colors.pink,),);
  }
}
sadegh
fuente