Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ README updates (example web app) and add supported platforms.

## 2.2.1

* reintroduced support for OpenEarable on Firmware 2.1.*
* reintroduced support for OpenEarable on Firmware 2.1.*

## 2.2.2

* upgraded dependencies to newest versions
3 changes: 1 addition & 2 deletions example/lib/widgets/audio_player_control_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import 'package:open_earable_flutter/open_earable_flutter.dart';
class AudioPlayerControlWidget extends StatelessWidget {
final AudioPlayerControls audioPlayerControls;

const AudioPlayerControlWidget({Key? key, required this.audioPlayerControls})
: super(key:key);
const AudioPlayerControlWidget({super.key, required this.audioPlayerControls});

@override
Widget build(BuildContext context) {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/widgets/fota/stepper_view/firmware_select.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import '../firmware_select/firmware_list.dart';
import 'package:open_earable_flutter/open_earable_flutter.dart';

class FirmwareSelect extends StatelessWidget {
const FirmwareSelect({Key? key}) : super(key: key);
const FirmwareSelect({super.key});

@override
Widget build(BuildContext context) {
Expand Down
3 changes: 1 addition & 2 deletions example/lib/widgets/frequency_player_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import 'package:open_earable_flutter/open_earable_flutter.dart';
class FrequencyPlayerWidget extends StatefulWidget {
final FrequencyPlayer frequencyPlayer;

const FrequencyPlayerWidget({Key? key, required this.frequencyPlayer})
: super(key:key);
const FrequencyPlayerWidget({super.key, required this.frequencyPlayer});

@override
State<FrequencyPlayerWidget> createState() => _FrequencyPlayerWidgetState();
Expand Down
4 changes: 2 additions & 2 deletions example/lib/widgets/grouped_box.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ class GroupedBox extends StatelessWidget {
final Widget child;

const GroupedBox({
Key? key,
super.key,
required this.title,
required this.child,
}) : super(key: key);
});

@override
Widget build(BuildContext context) {
Expand Down
3 changes: 1 addition & 2 deletions example/lib/widgets/jingle_player_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import 'package:open_earable_flutter/open_earable_flutter.dart';
class JinglePlayerWidget extends StatefulWidget {
final JinglePlayer jinglePlayer;

const JinglePlayerWidget({Key? key, required this.jinglePlayer})
: super(key:key);
const JinglePlayerWidget({super.key, required this.jinglePlayer});

@override
State<JinglePlayerWidget> createState() => _JinglePlayerWidgetState();
Expand Down
2 changes: 1 addition & 1 deletion example/lib/widgets/rgb_led_control_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class RgbLedControlWidget extends StatefulWidget {
final RgbLed rgbLed;
final StatusLed? statusLed;

const RgbLedControlWidget({Key? key, required this.rgbLed, this.statusLed}) : super(key: key);
const RgbLedControlWidget({super.key, required this.rgbLed, this.statusLed});

@override
State<RgbLedControlWidget> createState() => _RgbLedControlWidgetState();
Expand Down
3 changes: 1 addition & 2 deletions example/lib/widgets/sensor_configuration_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import 'package:open_earable_flutter/open_earable_flutter.dart';
class SensorConfigurationView extends StatefulWidget {
final SensorConfiguration configuration;

const SensorConfigurationView({Key? key, required this.configuration})
: super(key: key);
const SensorConfigurationView({super.key, required this.configuration});

static List<SensorConfigurationView>? createSensorConfigurationViews(
Wearable wearable) {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/widgets/sensor_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:open_earable_flutter/open_earable_flutter.dart';
class SensorView extends StatelessWidget {
final Sensor sensor;

const SensorView({Key? key, required this.sensor}) : super(key: key);
const SensorView({super.key, required this.sensor});

static List<SensorView>? createSensorViews(Wearable wearable) {
if (wearable is SensorManager) {
Expand Down
3 changes: 1 addition & 2 deletions example/lib/widgets/storage_path_audio_player_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import 'package:open_earable_flutter/open_earable_flutter.dart';
class StoragePathAudioPlayerWidget extends StatefulWidget {
final StoragePathAudioPlayer audioPlayer;

const StoragePathAudioPlayerWidget({Key? key, required this.audioPlayer})
: super(key: key);
const StoragePathAudioPlayerWidget({super.key, required this.audioPlayer});

@override
State<StoragePathAudioPlayerWidget> createState() =>
Expand Down
2 changes: 0 additions & 2 deletions example/macos/Flutter/GeneratedPluginRegistrant.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ import Foundation

import file_picker
import flutter_archive
import path_provider_foundation
import universal_ble

func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin"))
FlutterArchivePlugin.register(with: registry.registrar(forPlugin: "FlutterArchivePlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
UniversalBlePlugin.register(with: registry.registrar(forPlugin: "UniversalBlePlugin"))
}
Loading
Loading