ZXL Blog

Thinking will not overcome fear but action will.

Flutter 动画详解(一)

主要介绍了动画的原理相关概念

Flutter 动画详解(一) 本文主要介绍了动画的原理相关概念,对其他平台的动画做了一个简要的梳理,并简要的介绍了Flutter动画的一些知识。 1. 动画介绍 动画对于App来说,非常的重要。很多App,正是因为有了动画,所以才会觉得炫酷。移动端的动画库有非常的多,例如iOS上的Pop、web端的animate.css、Android端的AndroidViewAnimati...

Flutter 布局控件完结篇

对Flutter的29种布局控件进行了总结分类

Flutter 布局控件完结篇 本文对Flutter的29种布局控件进行了总结分类,讲解一些布局上的优化策略,以及面对具体的布局时,如何去选择控件。 1. 系列文章 Flutter 布局详解 Flutter 布局(一)- Container详解 Flutter 布局(二)- Padding、Align、Center详解 Flutter 布局(三)- Fitte...

Flutter 布局(十)- ListBody、ListView、CustomMultiChildLayout详解

主要介绍Flutter布局中的ListBody、ListView、CustomMultiChildLayout控件

Flutter 布局(十)- ListBody、ListView、CustomMultiChildLayout详解 本文主要介绍Flutter布局中的ListBody、ListView、CustomMultiChildLayout控件,详细介绍了其布局行为以及使用场景,并对源码进行了分析。 1. ListBody A widget that arranges its ch...

Flutter 布局(九)- Flow、Table、Wrap详解

主要介绍Flutter布局中的Flow、Table、Wrap控件

Flutter 布局(九)- Flow、Table、Wrap详解 本文主要介绍Flutter布局中的Flow、Table、Wrap控件,详细介绍了其布局行为以及使用场景,并对源码进行了分析。 1. Flow A widget that implements the flow layout algorithm. 1.1 简介 Flow按照解释的那样,是一个实现流式布局...

Flutter 布局(八)- Stack、IndexedStack、GridView详解

主要介绍Flutter布局中的Stack、IndexedStack、GridView控件

Flutter 布局(八)- Stack、IndexedStack、GridView详解 本文主要介绍Flutter布局中的Stack、IndexedStack、GridView控件,详细介绍了其布局行为以及使用场景,并对源码进行了分析。 1. Stack A widget that positions its children relative to the edges...

Flutter 布局(七)- Row、Column详解

主要介绍Flutter布局中的Row、Column控件

Flutter 布局(七)- Row、Column详解 本文主要介绍Flutter布局中的Row、Column控件,详细介绍了其布局行为以及使用场景,并对源码进行了分析。 1. Row A widget that displays its children in a horizontal array. 1.1 简介 在Flutter中非常常见的一个多子节点控件,将c...

Flutter 布局(六)- SizedOverflowBox、Transform、CustomSingleChildLayout详解

主要介绍Flutter布局中的SizedOverflowBox、Transform、CustomSingleChildLayout三种控件

Flutter 布局(六)- SizedOverflowBox、Transform、CustomSingleChildLayout详解 本文主要介绍Flutter布局中的SizedOverflowBox、Transform、CustomSingleChildLayout三种控件,详细介绍了其布局行为以及使用场景,并对源码进行了分析。 1. SizedOverflowBox ...

Flutter 布局(五)- LimitedBox、Offstage、OverflowBox、SizedBox详解

主要介绍Flutter布局中的LimitedBox、Offstage、OverflowBox、SizedBox四种控件

Flutter 布局(五)- LimitedBox、Offstage、OverflowBox、SizedBox详解 本文主要介绍Flutter布局中的LimitedBox、Offstage、OverflowBox、SizedBox四种控件,详细介绍了其布局行为以及使用场景,并对源码进行了分析。 1. LimitedBox A box that limits its siz...

Flutter 布局(四)- Baseline、FractionallySizedBox、IntrinsicHeight、IntrinsicWidth详解

主要介绍Flutter布局中的Baseline、FractionallySizedBox、IntrinsicHeight、IntrinsicWidth四种控件

Flutter 布局(四)- Baseline、FractionallySizedBox、IntrinsicHeight、IntrinsicWidth详解 本文主要介绍Flutter布局中的Baseline、FractionallySizedBox、IntrinsicHeight、IntrinsicWidth四种控件,详细介绍了其布局行为以及使用场景,并对源码进行了分析。 1. ...

Flutter 布局(三)- FittedBox、AspectRatio、ConstrainedBox详解

本文主要介绍Flutter布局中的FittedBox、AspectRatio、ConstrainedBox

Flutter 布局(三)- FittedBox、AspectRatio、ConstrainedBox详解 本文主要介绍Flutter布局中的FittedBox、AspectRatio、ConstrainedBox,详细介绍了其布局行为以及使用场景,并对源码进行了分析。 1. FittedBox Scales and positions its child within ...