Skip to content

Commit

Permalink
flutter upgrade and formatting updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam McKee committed Mar 29, 2024
1 parent c423d5c commit d764995
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ main ]

env:
flutter-version: 3.10.5
flutter-version: 3.19.4

jobs:
verified:
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
flutter-version: [ '3.10.5', '3.7.0' ]
flutter-version: [ '3.19.4', '3.10.5', '3.7.0' ]
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
Expand Down
1 change: 1 addition & 0 deletions lib/display/chart_positioning.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:ui';

import 'package:libtab/libtab.dart';

/// Container and calculator of [Canvas] spacing values for strings and notes
Expand Down
2 changes: 2 additions & 0 deletions lib/display/chord_display.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import 'dart:math';

import 'package:flutter/widgets.dart';
import 'package:libtab/libtab.dart';

import 'grid_painter.dart';

class ChordChartDisplay extends StatelessWidget {
Expand Down
1 change: 1 addition & 0 deletions lib/display/note_positioning.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:ui';

import 'package:libtab/libtab.dart';

/// Map of 16th note timings (1-16) to list of [NotePosition]s to be positioned
Expand Down
6 changes: 3 additions & 3 deletions lib/libtab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ library libtab;

export 'chord.dart';
export 'context.dart';
export 'display/chart_positioning.dart';
export 'display/chord_display.dart';
export 'display/measure_display.dart';
export 'instrument.dart';
export 'measure.dart';
export 'note.dart';
export 'technique.dart';
export 'display/chart_positioning.dart';
export 'display/chord_display.dart';
export 'display/measure_display.dart';
File renamed without changes.

0 comments on commit d764995

Please sign in to comment.