Learn How to Use Flutter Align Widget with Example Code



Are you looking for a powerful and flexible way to align your widgets in a Flutter application? Look no further than the Align widget! In this article, we’ll dive into the Align widget and provide a real-world example of how to use it in your Flutter code.

The Align widget is a flexible and powerful tool for positioning widgets within a parent widget. It allows you to specify the alignment of a child widget within the parent, using properties such as alignment, widthFactor, heightFactor, and more.

Flutter Align Widget example

Let’s take a look at an example of how to use the Align widget in a real-world scenario. Suppose you’re building a login screen for your Flutter app, and you want to align the login button at the bottom of the screen, centered horizontally. learn about also image carousel slider flutter.

To achieve this layout, you can use the Align widget as follows:

Flutter Align Widget To align a child widget.

Align(
          alignment: Alignment.center,
          child: Text(
            "ALIGN WIDGET",
            style: TextStyle(fontSize: 35, fontWeight: FontWeight.bold),
          )),

    Alignment.topLeft
    Alignment.topCenter
    Alignment.topRight
    Alignment.centerLeft
    Alignment.center
    Alignment.centerRight
    Alignment.bottomLeft
    Alignment.bottomCenter
    Alignment.bottomRight

Align widget flutter

Flutter Align Widget

Flutter tutorial source Code:

import 'package:flutter/material.dart';

main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: FirstPage(),
    );
  }
}

class FirstPage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
          title: const Text("Instructive Tech"), backgroundColor: Colors.green),
      body: const Align(
          alignment: Alignment(-0.7, 0.8 ),
          child: Text(
            "ALIGN WIDGET",
            style: TextStyle(fontSize: 35, fontWeight: FontWeight.bold),
          )),
    );
  }
}

In this example code, we use the Align widget to position the login button at the bottom center of the screen. We set the alignment property to Alignment.bottomCenter, which aligns the child widget at the bottom center of the parent. We also use a SizedBox widget to set the width and height of the button, and an ElevatedButton widget to create the button with a raised appearance.

  • How to Conduct YouTube Keyword Research Easily?
    Introduction YouTube is the second largest search engine in the world, making it a valuable platform for content creators and businesses alike. To maximize your visibility and reach on YouTube, it is crucial to conduct proper keyword research. By identifying the right keywords, you can optimize your videos for search and increase your chances of …

    Read more …

  • How to upgrade the Dart SDK version in flutter
    If you’re a Flutter developer, you know how important it is to stay up-to-date with the latest version of the Dart SDK. Upgrading the Dart SDK ensures that you have access to the latest features, bug fixes, and performance improvements. Step 1: Check Your Current Dart SDK Version Before you begin the upgrade process, it’s …

    Read more …

  • Why Do Advertisers Use Testimonials?
    In the ever-competitive business landscape, nurturing strong connections with your customers remains paramount for enhancing your credibility and positioning yourself as an industry authority. Establishing credibility is the bedrock upon which trust is built, ultimately translating into increased sales. To bolster your company’s credibility, integrating testimonial advertising into your marketing strategy is essential. So, what …

    Read more …

  • How To Earn $5 Fast Method!
    Looking to boost your income by $25 in less than an hour? This isn’t the start of a clichéd sales pitch; it’s about discovering several quick and simple ways to earn $5 online within minutes. For instance, you can make five bucks by completing tasks such as taking brief surveys, participating in short website usability …

    Read more …

  • What Does BMF Mean On TikTok? Latest Social Media Acronyms
    In the fast-paced world of social media, acronyms are the language of choice, enabling users to communicate swiftly without the need for lengthy phrases. While classics like LOL and OMG are still in use, the younger generation on TikTok has introduced a new acronym into the mix: BMF. So, what exactly does BMF mean, and …

    Read more …

Learn also, flutter interactive widget.

Conclusion

In conclusion, the Align widget is a powerful and flexible way to position widgets within a Flutter app. By using the alignment, widthFactor, heightFactor, and other properties, you can achieve any layout you need. Try using the Align widget in your next Flutter project and see how it can help you create beautiful, functional user interfaces.

Leave a Comment