Chapter 2.1 internationalization of the engineering of the Flutter project

internationalization Method 1 GetX (recommended) GetX is a super lightweight and powerful solution for Fl} utter. It quickly and practically combines high-performance state management, intelligent dependency injection and routing management. GetX address: Github: https://github.com/jonataslaw/getxPub.dev: https://pub.dev/packages/get Add Ge ...

Added by nonlinear on Sun, 16 Jan 2022 17:16:41 +0200

Take you to a Netease cloud music home page (Part I)

preface Hello, everyone, I've been learning to encode with Swift recently. Because many previous projects were implemented with OC, I'm still in the stage of learning about Swift. In order to improve my learning efficiency, I will set a short-term goal for myself every time. This time, in order to speed up my starting Swift, my goal is to comp ...

Added by zxiny_chin on Sat, 15 Jan 2022 23:28:34 +0200

Navigation at the bottom of the shuttle conveyor bottom

original texthttps://medium.flutterdevs.co...codehttps://github.com/flutter-de...reference resourceshttps://pub.dev/packages/conv...textThe bottom bar of the convex Bottom is an application sketch diagram, and its shape is the shape of the convex Bottom. It can make the user interface look great and improve the way users interact with the inter ...

Added by fat creative on Thu, 13 Jan 2022 16:11:43 +0200

Flutter realizes the effect of seat selection in the cinema!

IntroductionI received a demand for imitation cinemas. I almost searched Baidu, Google and stack overflow last week. We can only write one by ourselves if we don't find the effect realized by fluent. This article only talks about ideas, and you need to do it yourself. As long as you understand the following ideas, the implementation is very sim ...

Added by sharke on Tue, 11 Jan 2022 12:10:49 +0200

Flutter hybrid development (Android) flutter communicates with Native

prefaceAs a hybrid development, it is inevitable for Flutter to interact with the native end. For example, calling the native system sensor and the network framework of the native end for data requests will use the methods of Flutter calling android and android calling Flutter. Here, Platform Channels are involvedPlatform ChannelsThe Flutter tr ...

Added by amsgwp on Mon, 10 Jan 2022 07:10:19 +0200

Introduction to Dart language simplification

Introduction to Dart language simplification 1. Introduction Dart should be designed with reference to both Java and JavaScript and kotlin object-oriented JIT & AOT: JIT (Just in Time) advantages: instant compilation, faster compilation during development and faster overloading; Disadvantages: compiling the code into machine code at ru ...

Added by DonelleJenae on Fri, 07 Jan 2022 10:34:21 +0200

14. Draggable drag control of fluent widgets

Draggable series components allow us to drag components. Draggable The Draggable component has two parameters that must be filled in. The child parameter is a child control and the feedback parameter is a component that moves with drag. The usage is as follows: Draggable( child: Container( height: 100, width: 100 ...

Added by igorlopez on Wed, 05 Jan 2022 22:52:36 +0200

Shutter - components of a single layout (Align, Center, Padding, Container)

In order to realize various layout styles of the interface, many components are combined to form a complex layout. When it comes to the fact that the layout of FLUENT is inseparable from widgets, widgets are also used to complete the layout of fluent. 1.Align component Let's take a look at the source code of Align: const Align({ Key key, t ...

Added by Nhoj on Tue, 04 Jan 2022 12:03:56 +0200

Dart series: the secret of dart excellence - isolation mechanism

brief introductionMany asynchronous programming skills in dart were introduced before. I wonder if you have found a problem. If it is asynchronous programming in java, locking and concurrency mechanisms will certainly be mentioned, but for dart, it seems that you have never heard of multithreading and concurrency. Why?Today, let's explain the i ...

Added by p4rsec on Mon, 03 Jan 2022 21:30:46 +0200

Actual bottom navigation VI of shuttle project

/Navigation styles at the bottom of some app s in life/ From the popularity of smart phones to our life, mobile phones have provided convenience for our life After purchasing a mobile phone, the system installs many apps by default. Click any mobile app to enter the application home page, and you will see the bottom navigation It can be said ...

Added by ilikephp on Mon, 03 Jan 2022 17:16:27 +0200