How to create a App using Material Design

0 votes

Hi Guys,

I have started with Flutter Framework. I want to create one App with the help of a Material Design system. Can anyone tell me how can I do that?

Jul 23, 2020 in Others by akhtar
• 38,230 points
419 views

1 answer to this question.

0 votes

Hi@akhtar,

You need to use the MaterialApp method to create an App. You can see the below example. It may help you.

import 'package:flutter/material.dart';
void main() {
  var x = Text(
    'Hello',
    textDirection: TextDirection.ltr,
    textAlign: TextAlign.center,
  );
  var design = MaterialApp(home: x);
  runApp(design);
}
answered Jul 23, 2020 by MD
• 95,440 points

Related Questions In Others

0 votes
1 answer

How to create a navigation bar in Flutter app?

Hi@akhtar, To add a drawer to the app, ...READ MORE

answered Aug 25, 2020 in Others by MD
• 95,440 points
672 views
0 votes
1 answer

How to create a dependent drop down list using [Apache POI]

There is nothing apache poi cannot do, ...READ MORE

answered Oct 24, 2022 in Others by narikkadan
• 63,420 points
4,622 views
0 votes
1 answer

How do I start studying Node.JS to create a restful API?

Node.js is an open source server environment ...READ MORE

answered Jun 11, 2019 in Others by ArchanaNagur
• 2,360 points
740 views
0 votes
0 answers

How to create a batch file in windows?

What is a batch file and How ...READ MORE

Jul 4, 2019 in Others by sindhu
496 views
0 votes
1 answer

What is Material Design in Flutter?

Hi@akhtar, Material is a design system created by ...READ MORE

answered Jul 23, 2020 in Others by MD
• 95,440 points
601 views
0 votes
1 answer

What is Scaffold Widget in Material Design?

Hi@akhtar, The Scaffold is good enough to create a general-purpose ...READ MORE

answered Jul 23, 2020 in Others by MD
• 95,440 points
486 views
0 votes
1 answer

What is the future of flutter?

Hi@MD, Flutter is a rather new cross-platform framework ...READ MORE

answered Jul 17, 2020 in Others by akhtar
• 38,230 points
904 views
0 votes
1 answer

What is Flutter?

Hi@akhtar, Flutter is an app SDK for building ...READ MORE

answered Jul 17, 2020 in Others by MD
• 95,440 points
1,067 views
0 votes
1 answer

How to create subnet inside a VPC in AWS using Terraform?

Hi@akhtar, You need to use aws_subnet resource inside your ...READ MORE

answered Jul 21, 2020 in Others by MD
• 95,440 points
431 views
0 votes
1 answer

How to create a Volume Icon in Flutter App?

Hi@akhtar, You can use Icon Widget to create ...READ MORE

answered Jul 24, 2020 in Others by MD
• 95,440 points
1,745 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP