FLUTTER ECOSYSTEM

MattiaPispisa/posix_tz

Pacote Dart de fuso horário Posix. Esta biblioteca fornece fusos horários no formato padrão Posix. Os dados são obtidos lendo o conteúdo de /usr/share/zoneinfo.

Capa do projeto posix_tz
Stars
1
Forks
0
Último push (UTC)
21 de abr. de 2024
Status do projeto
Ativo
Mattia GitHub avatar
GITHUB User

Mattia ↗

I have always been passionate about mobile development. I started with iOS and then transitioned to a hybrid approach.

MVLabsUdine, ItalySite oficial ↗
LinguagensDart

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 2 itens

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher README

Posix Tz

This library provides timezones in the standard Posix format. The data is obtained by reading the content of /usr/share/zoneinfo.

Initialization

It's important to initialize the library before reading the timezones.

void main() {
    await initializePosixTz();
}

Usage

// after initialization
final posixTz = db.get("Europe/Rome");
print(posixTz.toString()) // name:Europe/Rome, posix:CET-1CEST,M3.5.0,M10.5.0/3

Other

PosixTz can be compared.

final posixTz1 = posixTzDb.get('Europe/Rome');
final posixTz2 = posixTzDb.get('Europe/Rome');
final posixTz3 = posixTzDb.get('Atlantic/Stanley');
print(posixTz1 == posixTz2); // true
print(posixTz1 == posixTz3); // false

posixTzDb can be expanded.

posixTzDb.add(PosixTz(name: "Ababwa",posix: "<+06>-6"));