device_vendor_info

Creator: coderz1093

Last updated:

0 purchases

device_vendor_info Image
device_vendor_info Images

Languages

Categories

Add to Cart

Description:

device vendor info

Hardware information getter in Flutter environment #



This package offers additional hardware informations regarding on BIOS, motherboard and system that it enables software to allow/restrict features to specific vendors.
Usages #
Install dependencies #
In pubspec.yaml:
dependencies:
device_vendor_info: # Version constraint
copied to clipboard
Import & implementation #
import 'package:device_vendor_info/device_vendor_info.dart';
import 'package:flutter/widgets.dart';

Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();

final bios = await getBiosInfo();
print(bios.vendor);
}
copied to clipboard
Testing #
To run testes with DeviceVendorInfo, overrideCorrectTargetPlatform must be invoked in setUpAll before all testes. Then, attach MockDeviceVendorInfoLoader into DeviceVendorInfo.instance. Otherwise the incoming testes will throws UnsupportedError immediately.
// Specify testing platform to prevent causing test failed when running on unsupport platform accidentally.
@TestOn("windows || mac-os || linux")

import 'package:device_vendor_info/device_vendor_info.dart';
import 'package:device_vendor_info/instance.dart' show DeviceVendorInfo;
import 'package:device_vendor_info/testing.dart';
import 'package:flutter_test/flutter_test.dart';

void main() {
setupAll(() {
// Call it first
overrideCorrectTargetPlatform();

// Change the instance to mock loader instead of automatically uses produtive loader.
DeviceVendorInfo.instance = MockDeviceVendorInfoLoader(
BiosInfo(vendor: "Generic vendor", version: "v1.23", releaseDate: DateTime(2023, 2, 21)),
BoardInfo(manufacturer: "Default", productName: "", version: ""),
SystemInfo(family: "",manufacturer: "",productName: "",version: "")
);
});
test("Run test", () {
// Test implementations here
});
testWidget("Run test with widget", (tester) async {
// Test with Flutter widget
});
}
copied to clipboard
License #
BSD-3

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.