Skip to content

These was a Helloworld App in Dark Theme with a use of Some Basic Widget in Flutter.

Notifications You must be signed in to change notification settings

jaypatel15406/Flutter-HelloWorld-DarkTheme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_helloworld_darktheme

  • The Basic Hello World Program in Flutter
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Welcome to Flutter'),
        ),
        body: Center(
          child: Text('Hello World'),
        ),
      ),
    );
  }
}

Output :

  • These was the Basic Helloworld Program but i have just modified Helloworld App in Dark Theme and also Add Some Widget,Button,Android Icon.

Some Screenshot Of the App Before and After Pressing Button

  

Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

About

These was a Helloworld App in Dark Theme with a use of Some Basic Widget in Flutter.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published