812148658d
* add web support and remove all tabs except chat * Update README.md * feat: setup project for xcode builds + add other tabs back * chore: update macos podfile * chore: update packages + update build config + add audio playback on iOS/macOS + swap downloader library * chore: remove ide-specific files * chore: update readme * chore: update build.gradle to reflect correct minSdkVersion * chore: remove generated ic_launcher png files * chore: update formatting to use 120 char line length * chore: address use of then method on awaited future * chore: update app icons for macOS & iOS * Fix file move not waiting for download finish --------- Co-authored-by: lumey <lumey@lumey.dev> Co-authored-by: Garrett <toast@isota.ch>
40 lines
1.2 KiB
Dart
40 lines
1.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:recon/clients/session_client.dart';
|
|
import 'package:recon/widgets/sessions/session_filter_dialog.dart';
|
|
|
|
class SessionListAppBar extends StatefulWidget {
|
|
const SessionListAppBar({super.key});
|
|
|
|
@override
|
|
State<SessionListAppBar> createState() => _SessionListAppBarState();
|
|
}
|
|
|
|
class _SessionListAppBarState extends State<SessionListAppBar> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AppBar(
|
|
title: const Text("Sessions"),
|
|
actions: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(right: 4.0),
|
|
child: IconButton(
|
|
onPressed: () async {
|
|
final sessionClient = Provider.of<SessionClient>(context, listen: false);
|
|
await showDialog(
|
|
context: context,
|
|
builder: (context) => ChangeNotifierProvider.value(
|
|
value: sessionClient,
|
|
child: SessionFilterDialog(
|
|
lastFilter: sessionClient.filterSettings,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
icon: const Icon(Icons.filter_alt_outlined),
|
|
),
|
|
)
|
|
],
|
|
);
|
|
}
|
|
}
|