-
Get Width and Height of a Widget
Get Width and Height of a Widget In Flutter, you can easily get the size of a specific widget after it’s rendered. What you need to do is to give it a key, then using that key to access currentContext.size property, like this: final _key = GlobalKey(); // This function is trggered somehow after build() called vo... Read More
-
How to Determine Screen Height and Width?
Get Width and Height of a Widget In Flutter, you can easily get the size of a specific widget after it’s rendered. What you need to do is to give it a key, then using that key to access currentContext.size property, like this: // Full screen width and height double width = MediaQuery.of(context).size.width; double... Read More
-
Flutter For Dummies Cheat Sheet
A “Hello World” Dart Program main() => print('Hello World'); A “Hello World” Flutter Program import 'package:flutter/material.dart'; main() => runApp(HelloApp()); class HelloApp extends StatelessWidget { Widget build(BuildContext context) { return MaterialApp( home: Material( child: ... Read More
-
Design Patterns là gì?
Năm 1994. trong cuốn sách Design Patterns - Elements of Reusable Object-Oriented Software của 4 tác giả Erich Gamma, Richard Helm, Ralph Johnson và John Vlissides (4 tác giải này thường được nhắc đến với tên Gang of Four - Bộ Tứ) đã giới thiệu các Design Patterns (mẫu thiết kế) chuẩn cho việc phát triển phần mềm. ... Read More
-
Dart Cheat Sheet
Bạn có thể sử dụng các IDE như Android Studio, Visual Studio Code hoặc SublimeText để chạy thử các chương trình dưới đây. Hoặc đơn giản nhất là truy cập dartpad để chạy thử chương trình ngay trên trình duyệt web mà không cần cài đặt. Một số quy ước chung Một câu lệnh Dart kết thúc bởi dấu chấm phảy ; Một kh... Read More