Flutter Tutorials

Flutter app development tutorials


flutter – LinearProgressIndicator value color

main.dart


import 'package:flutter/material.dart';

void main() => runApp(const FlutterExample());

class FlutterExample extends StatelessWidget {
  const FlutterExample({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Flutter Example',
        theme: ThemeData(primarySwatch: Colors.indigo),
        home: const StateExample()
    );
  }
}

class StateExample extends StatefulWidget {
  const StateExample({Key? key}) : super(key: key);

  @override
  _StateExampleState createState() => _StateExampleState();
}

class _StateExampleState extends State<StateExample> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: const Color(0xFFEDEAE0),
      appBar: AppBar(
          title: const Text("LinearProgressIndicator Value Color")
      ),
      body: bodyContent(),
    );
  }


  bodyContent() {
    return const Center(
        child: Padding(
          padding: EdgeInsets.symmetric(horizontal: 50),
          child:LinearProgressIndicator(
            value: null,
            valueColor: AlwaysStoppedAnimation<Color>(Colors.pink),
          ),
        )
    );
  }
}

More flutter tutorials



About Me

Flutter Developer

Design a site like this with WordPress.com
Get started