mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-30 09:47:43 +03:00
9 lines
335 B
Dart
Executable File
9 lines
335 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
final Image noAccounts = _graphic('no-accounts');
|
|
final Image noFingerprints = _graphic('no-fingerprints');
|
|
final Image noPermission = _graphic('no-permission');
|
|
final Image manageAccounts = _graphic('manage-accounts');
|
|
|
|
Image _graphic(String name) => Image.asset('assets/graphics/$name.png');
|