Flutter GetX基础教程(十二):RxList、Rx([])、.obs对比分析

前言

首先我们知道GetX组件里面obs状态管理有三种创建属性的方式,我们这里以List为例

  • Rx([])
  • RxList
  • .obs

视频讲解

视频讲解链接

三种方式对比分析

我们声明了一个类ListController继承自GetxController,用于属性创建以及状态通知的方法,首先我们用三种方式来创建属性并且通过convertToUpperCase方法进行对值的改变,然后我们通过调用update()`方法来进行数据更新,最后我们使用该属性状态的值,接下来我们看一下三种使用方式的对比。

  • 第一种Rx([])
  • 第二种RxList
  • 第三种 .obs

import 'dart:convert';
import 'package:get/get.dart';

class ListController extends GetxController {
// 第一种
final listOne = Rx>([
{
"name": "Jimi",
"age": 18
}
]);

// 第二种
final listTwo = RxList([
{
"name": "Jimi",
"age": 18
}
]);

// 第三种
final listThree = [{
"name": "Jimi",
"age": 18
}].obs;

void convertToUpperCase() {
listOne.value[0]["name"] = listOne.value.first["name"].toUpperCase();
listTwo.toList().first["name"] = listTwo.toList().first["name"].toString().toUpperCase();
listThree.toList().first["name"] = listTwo.toList().first["name"].toString().toUpperCase();
update();
}
}

我们在页面中获取状态更新的值

import 'package:flutter/material.dart';
import 'package:flutter_getx_dvanced_example/ListController.dart';
import 'package:get/get.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatelessWidget {

ListController listController = Get.put(ListController());

@override
Widget build(BuildContext context) {
return GetMaterialApp(
title: "GetX",
home: Scaffold(
appBar: AppBar(
title: Text("GetX"),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
GetBuilder(
init: listController,
builder: (controller) {
return Text(
"我的名字是 {controller.listTwo.first['name']}",
style: TextStyle(color: Colors.green, fontSize: 30),
);
},
),
SizedBox(height: 20,),
GetBuilder(
init: listController,
builder: (controller) {
return Text(
"我的名字是 ${controller.listThree.first['name']}",
style: TextStyle(color: Colors.green, fontSize: 30),
);
},
),
SizedBox(height: 20,),
ElevatedButton(
onPressed: () {
listController.convertToUpperCase();
},
child: Text("转换为大写"))
],
),
),
),
);
}
}

|`

效果展示

image

Rx([])源码分析

Rx 继承自_RxImpl_RxImpl又继承RxNotifier并混合 RxObjectMixin

RxImpl它主要的作用是管理泛型的所有逻辑的。

RxObjectMixin 它主要的作用是管理注册到GetXObx的全局对象,比如WidgetRx

Rx它主要的作用是将自定义模型类用Rx`来进行包装,

class Rx extends _RxImpl {
Rx(T initial) : super(initial);

@override
dynamic toJson() {
try {
return (value as dynamic)?.toJson();
} on Exception catch (_) {
throw '$T has not method [toJson]';
}
}
}

abstract class _RxImpl extends RxNotifier with RxObjectMixin {
_RxImpl(T initial) {
_value = initial;
}

void addError(Object error, [StackTrace? stackTrace]) {
subject.addError(error, stackTrace);
}

Stream map(R mapper(T? data)) => stream.map(mapper);

void update(void fn(T? val)) {
fn(_value);
subject.add(_value);
}

void trigger(T v) {
var firstRebuild = this.firstRebuild;
value = v;
if (!firstRebuild) {
subject.add(v);
}
}
}

|`

RxList源码分析

RxList继承自ListMixin实现了RxInterface>并混合了NotifyManager>, RxObjectMixin>

RxList它的主要作用是创建一个类似于List 的一个列表

class RxList extends ListMixin
with NotifyManager>, RxObjectMixin>
implements RxInterface> {
RxList([List initial = const []]) {
_value = List.from(initial);
}

factory RxList.filled(int length, E fill, {bool growable = false}) {
return RxList(List.filled(length, fill, growable: growable));
}

factory RxList.empty({bool growable = false}) {
return RxList(List.empty(growable: growable));
}

/// Creates a list containing all [elements].
factory RxList.from(Iterable elements, {bool growable = true}) {
return RxList(List.from(elements, growable: growable));
}

/// Creates a list from [elements].
factory RxList.of(Iterable elements, {bool growable = true}) {
return RxList(List.of(elements, growable: growable));
}

/// Generates a list of values.
factory RxList.generate(int length, E generator(int index),
{bool growable = true}) {
return RxList(List.generate(length, generator, growable: growable));
}

/// Creates an unmodifiable list containing all [elements].
factory RxList.unmodifiable(Iterable elements) {
return RxList(List.unmodifiable(elements));
}

@override
Iterator get iterator => value.iterator;

@override
void operator []=(int index, E val) {
_value[index] = val;
refresh();
}

/// Special override to push() element(s) in a reactive way
/// inside the List,
@override
RxList operator +(Iterable val) {
addAll(val);
refresh();
return this;
}

@override
E operator [](int index) {
return value[index];
}

@override
void add(E item) {
_value.add(item);
refresh();
}

@override
void addAll(Iterable item) {
_value.addAll(item);
refresh();
}

@override
int get length => value.length;

@override
@protected
List get value {
RxInterface.proxy?.addListener(subject);
return _value;
}

@override
set length(int newLength) {
_value.length = newLength;
refresh();
}

@override
void insertAll(int index, Iterable iterable) {
_value.insertAll(index, iterable);
refresh();
}

@override
Iterable get reversed => value.reversed;

@override
Iterable where(bool Function(E) test) {
return value.where(test);
}

@override
Iterable whereType() {
return value.whereType();
}

@override
void sort([int compare(E a, E b)?]) {
_value.sort(compare);
refresh();
}
}

|`

.obs源码分析

当我们在调用.obs的时候其实内部的实现源码还是通过RxList(this)进行了一层包装,设计这个主要的目的就是为了方便开发者进行使用

ListExtension on List {
RxList get obs => RxList(this);

/// Add [item] to [List] only if [item] is not null.
void addNonNull(E item) {
if (item != null) add(item);
}

// /// Add [Iterable] to [List] only if [Iterable] is not null.
// void addAllNonNull(Iterable item) {
// if (item != null) addAll(item);
// }

/// Add [item] to List only if [condition] is true.
void addIf(dynamic condition, E item) {
if (condition is Condition) condition = condition();
if (condition is bool && condition) add(item);
}

/// Adds [Iterable] to [List] only if [condition] is true.
void addAllIf(dynamic condition, Iterable items) {
if (condition is Condition) condition = condition();
if (condition is bool && condition) addAll(items);
}

/// Replaces all existing items of this list with [item]
void assign(E item) {
// if (this is RxList) {
// (this as RxList)._value;
// }

clear();
add(item);

}

/// Replaces all existing items of this list with [items]
void assignAll(Iterable items) {
// if (this is RxList) {
// (this as RxList)._value;
// }
clear();
addAll(items);
}
}

|`

总结

我们对Rx([])RxList.obs进行了一个总结,在我们平时的开发过程中建议大家使用.obs即可,因为这是最简单的方式。

你可能感兴趣的:(Flutter GetX基础教程(十二):RxList、Rx([])、.obs对比分析)