Skip to content

Commit

Permalink
modernize more
Browse files Browse the repository at this point in the history
  • Loading branch information
Jawnnypoo committed Jan 23, 2024
1 parent f92423c commit 02470c1
Show file tree
Hide file tree
Showing 8 changed files with 87 additions and 298 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ This is just the visual web frontend. See [skyhook](https://github.com/Commit451
flutter build web
```

## Refs
- https://github.com/mateenkiani/theming_flutter
- https://medium.com/py-bits/turn-any-color-to-material-color-for-flutter-d8e8e037a837

## License
skyhook-web is available under the MIT license. See the LICENSE file for more info.

Expand Down
1 change: 1 addition & 0 deletions lib/api/skyhook_api.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import 'dart:async';
import 'dart:convert';

import 'package:http/http.dart' as http;
import 'package:skyhook/model/provider.dart';

Expand Down
1 change: 1 addition & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';

import 'skyhook_app.dart';

void main() {
Expand Down
8 changes: 4 additions & 4 deletions lib/model/provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Provider {
path = json['path'];

Map<String, dynamic> toJson() => {
'name': name,
'path': path,
};
}
'name': name,
'path': path,
};
}
2 changes: 1 addition & 1 deletion lib/skyhook_app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class SkyhookApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'SDPilates',
title: 'skyhook',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
Expand Down
Loading

0 comments on commit 02470c1

Please sign in to comment.