After 5 days, I finally made it!!! (cool guide page, login interface)

Small knowledge, big challenge! This article is participating“ Essential knowledge for programmers ”Creative activities. Preface: five days ago, I released many UI of login interface and initiated voting: https://juejin.cn/post/7010922696988966919 From that day on, I found my ui little sister and used a c up of milk tea in exchang ...

Posted by jarcoal on Wed, 29 Sep 2021 15:34:16 -0700

Actual combat III of fluent: implementation of small Demo of list and bullet frame

I've been learning Flutter for nearly two weeks. My friend just needs to do a demo for Flutter. I feel that I've been getting started recently. I promised. The main function is to make several buttons. Each button corresponds to list, check box, pop-up box and other functions. Since we're making a demo, we'll talk about putting all directory ...

Posted by zypher11 on Mon, 27 Sep 2021 00:02:03 -0700

[Flutter actual combat BLoC mode RxDart Provider mode]

I think the BLoC model Observer mode + thread scheduling + Dart asynchronous syntax feature + fluent encapsulation Dart asynchronous syntax features: dart API, Stream, FutureFluent encapsulation: StreamBuilder (encapsulating: Dart feature + fluent UI) The concept of old students is normal, so the following article focuses on Stream ------- ...

Posted by sukanya.paul on Sun, 26 Sep 2021 12:18:23 -0700

Dart language learning diary

Fundamentals of Dart language programming characteristic Dart language adopts single thread mode, which does not have the problems of resource competition and state synchronization. It uses the functions provided by dart language async,await Asynchronous tools implement asynchronous operations. In Dart language, everything is an Object, a ...

Posted by Crysma on Sun, 26 Sep 2021 02:10:17 -0700

flutter "multithreading" isolate primary level understanding

We learned in the second grade of primary school: Dart is single threaded and fluent depends on dart. However, if we want to do some operations with a large amount of computation in the main thread, it will inevitably block the thread and make the UI update stuck or even stuck. Then what shall I do? The good news is that Dart provides us wit ...

Posted by Nic on Mon, 20 Sep 2021 18:52:44 -0700

Fluent learning - theme style

In the development of fluent, we can reuse colors and descendants by defining themes, so as to make the design of the whole APP look more consistent 1. Use of theme theme Theme is divided into global theme and local theme Topics serve two purposes: After setting the theme, some widgets will automatically use the theme style (such a ...

Posted by rich1983 on Mon, 20 Sep 2021 08:50:56 -0700

Basic use of adapter in fish Redux

Introduction to official documents AdapterWhat's adapter The adapter is fish_ The optimized encapsulation of listView by Redux team is applicable to long list rendering. There are three implementation methods: The DynamicFlowAdapter accepts data drivers of array typesThe StaticFlowAdapter accepts a data-driven map typeCustomAdapter custom ada ...

Posted by apulmca2k4 on Mon, 20 Sep 2021 00:32:17 -0700

Flutter makes the Mid Autumn Festival guide page

Original address: https://juejin.cn/post/7007756651197366303 After reading it for a long time, everyone is true 🐂🍺, The moon has come out around the earth, so I'll also give you flowers ~ and then send you Mid Autumn Festival blessings: the moon is round and bright, the moon cakes are round and sweet, family reunion, everyone is happy and s ...

Posted by michaelnorth on Sat, 18 Sep 2021 06:42:26 -0700

Understanding of flutter introduction Isolate and compute

1, Original code Why Isolate? Let's first look at a relatively simple code: import 'package:flutter/material.dart'; import 'package:flutter/foundation.dart'; class TestWidget extends StatefulWidget { @override State<StatefulWidget> createState() { return TestWidgetState(); } } class TestWidgetState extends State<TestWi ...

Posted by NEWDAY on Fri, 17 Sep 2021 09:38:43 -0700

Construction and debugging of fluent development environment, and real questions for interview

Installation of simulatorRun the fluent project to the simulator and real machineFlutter common commands Construction of development environment 1. Download the fluent SDK The fleet SDK consists of two parts, one is the Dart SDK, and the other is the fleet SDK, because the fleet is based on Dart. You can download it in two ways: one is Git d ...

Posted by AutomatikStudio on Sun, 05 Sep 2021 14:41:31 -0700