core/sint_core library

Classes

ObxError
Rx<T>
Foundation class used for custom Types outside the common native Dart types. For example, any custom "Model" class, like User().obs will use Rx as wrapper.
RxBool
global object that registers against SINT and Obx, and allows the reactivity of those Widgets and Rx values.
RxDouble
RxImpl<T>
Base Rx class that manages all the stream logic for any Type.
RxInt
RxInterface<T>
This class is the foundation for all reactive (Rx) classes that makes SINT so powerful. This interface is the contract that _RxImpl<T> uses in all it's subclass.
RxList<E>
Create a list similar to List<T>
RxMap<K, V>
Rxn<T>
RxnBool
RxnDouble
RxnInt
RxnNum
RxnString
Rx class for String Type.
RxNum
RxSet<E>
RxString
Rx class for String Type.
SintEngine
SintInterface
SintInterface allows any auxiliary package to be merged into the "SINT" class through extensions
SintQueue

Enums

SmartManagement
SINT by default disposes unused controllers from memory, Through different behaviors. SmartManagement.full SmartManagement.full is the default one. Dispose classes that are not being used and were not set to be permanent. In the majority of the cases you will want to keep this config untouched. If you new to SINT then don't change this. SmartManagement.onlyBuilder only controllers started in init: or loaded into a Binding with Sint.lazyPut() will be disposed. If you use Sint.put() or Sint.putAsync() or any other approach, SmartManagement will not have permissions to exclude this dependency. With the default behavior, even ui instantiated with "Sint.put" will be removed, unlike SmartManagement.onlyBuilders. SmartManagement.keepFactoryJust like SmartManagement.full, it will remove it's dependencies when it's not being used anymore. However, it will keep their factory, which means it will recreate the dependency if you need that instance again.

Mixins

RxObjectMixin<T>
global object that registers against SINT and Obx, and allows the reactivity of those Widgets and Rx values.

Extensions

BoolExtension on bool
DoubleExtension on double
IntExtension on int
ListExtension on List<E>
MapExtension on Map<K, V>
RxBoolExt on Rx<bool>
RxDoubleExt on Rx<double>
RxIntExt on Rx<int>
RxnBoolExt on Rx<bool?>
RxnDoubleExt on Rx<double?>
RxnIntExt on Rx<int?>
RxnNumExt on Rx<T?>
RxnStringExt on Rx<String?>
RxNumExt on Rx<T>
RxStringExt on Rx<String>
RxT on T
RxTnew on Object
This method will replace the old .obs method. It's a breaking change, but it is essential to avoid conflicts with the new dart 3 features. T will be inferred by contextual type inference rather than the extension type.
SetExtension on Set<E>
SintReset on SintInterface
StringExtension on String

Properties

Get → _SintImpl
DEPRECATED: Legacy alias for seamless migration of the 38 repos. Prune this once SINT-Native adoption reaches 100%.
final
Sint → _SintImpl
The official SINT 1.0.0 API
final

Functions

defaultLogWriterCallback(String value, {bool isError = false}) → void
default logger from SINT

Exceptions / Errors

BindError<T>