const vs final | const vs final in Flutter

Flutter tutorial

const vs final in Flutter with example

Flutter Tutorial

Introduction

Flutter

Cross Platform

MVVM vs MVC vs MVP

Flutter Framework

Flutter Benefits

Flutter Comparison

Install Flutter in Win/Linux/Mac

Android Studio vs VsCode

Android Setup

VS Code Setup

VS Code Plugins

Android Studio Plugins

Flutter Widgets:

Flutter Basic Template

Flutter Commands

Top 10 Popular widgets

Flutter Stateless vs Stateful

Type of Widgets

Flutter Text widget

Flutter Text style

Textfield vs TextFormField

Flutter Scaffold

Flutter Container & SizedBox

Flutter Row & Column

Flutter Buttons

Flutter Stack

Flutter Forms

Flutter AlertDialog

Flutter Icons

Flutter Images

Flutter Drawer

Flutter ListView

Flutter GridView

Flutter Toast

Flutter Checkbox

Flutter Radio Button

Flutter Progress Bar

Flutter Tooltip

Flutter Slider

Flutter Table

Flutter SnackBar

Shimmer in Flutter

Bottom Navigation Bar in Flutter

Gesture Detector in Flutter

Error Handling in Flutter

DropDown in Flutter

Flutter Toggle

Auto Close Keyboard in Flutter

Screen size handling in Flutter

Flutter REST API

Flutter http

Flutter dio

dio vs http

Flutter Advance

Custom widget in Flutter

Flutter Navigator

Read Json in Flutter

Generate Excel in Flutter

Multiple Widgets in Flutter

Bottom sheet in Flutter

Copy to Clipboard in Flutter

Tab bar in Flutter

Code Editor in Flutter

Youtube Player in Flutter

Flutter App Development Tips

Flutter App version Update

Flutter Copy Text in App

Flutter Handle Null Value

Flutter Splash Screen

Flutter Disposable

Notification Listener

Flutter Switch Cases

Flutter Slivers

Flutter Custom App bar

Databinding in Flutter

Flutter Cards

Wrap vs Builder vs OverBarFlow

Flutter App Upgrade

GoogleMap vs FlutterMap

Circular progress contain Icon

DropDown Timer in Flutter

Flutter State management Comparison

Flutter vs Other Framework

Flutter Mixin

Passing values in Dart Files

WorkManager in Flutter

Flutter Database

Flutter Store Data

Suitable DB for Flutter

Backend for Flutter

SharedPreferences in Flutter

Flutter Token Expired Handling

Flutter Provider

Flutter Provider Tutorial

Flutter GetX

Flutter GetX tutorial

Flutter with Native

Flutter FFI

Flutter Testing

Flutter Tips

Best Practices

Reduce Flutter Screens

Tips to make app smart

Optimize App

Handle Multiple Pages

Interview Questions

Flutter 100 Interview Questions

Provider Interview Questions

GetX Interview Questions

BLoC Interview Questions

In flutter const and final are very commonly used and both are used for different purposes, const value are known at compile-time whereas , final value determined at runtime. Both const and final promote immutability, contributing to safer and more predictable code.

constfinal
Immutable, cannot be changed after creation.Immutable, cannot be changed after initialization.
Must be a compile-time constant value.Can be initialized at runtime but cannot be reassigned.
Commonly used for constant values like numbers, strings, and instances of user-defined classes with const constructors.Commonly used for values that can be determined at runtime but won’t change thereafter.
Must be initialized with a constant value at compile-time.Must be initialized either at runtime or with a value that can be determined at runtime.
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
//In this we use const and final in same 
  // Here const for compile-time constants
  static const int compileTimeConstant = 42;
  static const String compileTimeString = "Hello, const!";

  // Here final for values determined at runtime
  final int runtimeValue = DateTime.now().second;
  final String runtimeString = "Hello, final!";

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('ResearchThinker: const vs final in Flutter'),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
//when we run the program and refresh the values of runtime will change
              Text('Compile-time constant: $compileTimeConstant'),
              Text('Compile-time string: $compileTimeString'),
              SizedBox(height: 20),
              Text('Runtime value: $runtimeValue'),
              Text('Runtime string: $runtimeString'),
            ],
          ),
        ),
      ),
    );
  }
}
const vs final in Flutter
final vs const in flutter

Here we execute this program and use web (chrome), so above screenshots related to this program clearly shows that when we refresh the runtime value change and compile value remain same.

compileTimeConstant and compileTimeString are declared with const because their values are known at compile time.

runtimeValue and runtimeString are declared with final because their values are determined at runtime.

Leave a Reply

Your email address will not be published. Required fields are marked *

web_horizontal
About Us ♢ Disclaimer ♢ Privacy Policy ♢ Terms & Conditions ♢ Contact Us

Copyright © 2023 ResearchThinker.com. All rights reserved.