Technical practice phase II Flutter exception capture
Author: Youmeng + technical expert Yanke1, BackgroundApplication performance stability is a key link in a good user experience. In order to better ensure the stability of application performance, exception capture plays a vital role in ensuring the stability of online products. Our team launched U-APM mobile application performance monitoring p ...
Posted by chrima on Mon, 06 Dec 2021 15:39:34 -0800
Flutter - hybrid development
1. Mixed development
Mixed development can be divided into two cases
The fluent project invokes native functionsNative items are embedded in fluent (relatively heavy, not recommended)
2. The fluent project calls the native function
Go back to the previous wechat like my interface to make a function of clicking on the avatar to change th ...
Posted by bobthebullet990 on Mon, 29 Nov 2021 15:09:32 -0800
Fluent and pubspec files
summaryEach fluent project contains a pubspec.yaml file, commonly known as pubspec. When creating a new fluent project, this file will be generated in the project root directory to specify the dependencies required by the project, such as a specific package (and its version), font or image file. It also specifies other requirements, such as dep ...
Posted by MortimerJazz on Sun, 28 Nov 2021 14:50:48 -0800
Fluent and pubspec files
summary
Each fluent project contains a pubspec.yaml file, commonly known as pubspec. When creating a new fluent project, this file will be generated in the project root directory to specify the dependencies required by the project, such as a specific package (and its version), font or image file. It also specifies other requirements, such as d ...
Posted by slapdashgrim on Sun, 28 Nov 2021 08:56:26 -0800
Fluent writes a beautiful login interface, which directly hits the soul of excellent open source framework
[the external chain image transfer fails, and the source station may have an anti-theft chain mechanism. It is recommended to save the image and upload it directly (img-ekogkz67-163106606054) (/ / upload images. Jianshu. IO / upload_images / 16595031-0569b7ef72c3b468. PNG? Imagemogr2 / Auto orient / strip|imageview2 / 2 / w / 828 / format / web ...
Posted by Toneboy on Wed, 24 Nov 2021 02:58:19 -0800
Dart series: using numbers and strings in dart
brief introductionThe easiest way to become familiar with a language is to become familiar with the various core libraries provided by dart. Dart provides us with several common libraries, including dart:core,dart:async,dart:math,dart:convert,dart:html and dart:io.Today, let's introduce the use of numbers and strings in dart:core.#NumberDart: t ...
Posted by bonaparte on Tue, 23 Nov 2021 17:39:42 -0800
Fluent - life cycle
1. Life cycle
The process of an object from creation to destruction is a life cycle, in other words, a callback method. It has been encapsulated in fluent to know what state the widget is in, and then give you a callback corresponding to the state. Therefore, the life cycle is actually a series of callback methods.
So what does the life c ...
Posted by coffejor on Tue, 23 Nov 2021 04:15:28 -0800
Copy a wechat page worth hundreds of millions
The third-party link of the wechat payment page needs 100 million advertising fees. The wechat payment page is very suitable for functional navigation. This article uses ListView and GridView to imitate the wechat payment page, and introduces how to decorate the background and edge style of a component. On the left is the wechat payment interf ...
Posted by LaWr3nCe on Sat, 20 Nov 2021 08:13:55 -0800
Fluent layout - Row, Android framework video
A multi child node control, which is very common in fluent, arranges children in a row. It is estimated that the Flex layout in the Web is used for reference, so many properties and performance are similar to it. Note, however, that it does not have a scrolling attribute. If it exceeds one line, an overflow prompt will be displayed under debug. ...
Posted by Ruud Hermans on Sat, 20 Nov 2021 04:21:52 -0800
Fluent core Future/stream/bloc
Future (asynchronous operation)
Future has three statuses: unfinished, completed with value and completed with exception. Using future can simplify event tasks. In Dart, future objects can be used to represent the results of asynchronous operations. The return type of future is future < T >
There are three ways to deal with the ...
Posted by tomm098 on Fri, 19 Nov 2021 20:21:26 -0800