mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
// Copyright 2021, the Flutter project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
/// A mock authentication service
|
|
class BookstoreAuth extends ChangeNotifier {
|
|
bool _signedIn = false;
|
|
|
|
bool get signedIn => _signedIn;
|
|
|
|
Future<void> signOut() async {
|
|
await Future<void>.delayed(const Duration(milliseconds: 200));
|
|
// Sign out.
|
|
_signedIn = false;
|
|
notifyListeners();
|
|
}
|
|
|
|
Future<bool> signIn(String username, String password) async {
|
|
await Future<void>.delayed(const Duration(milliseconds: 200));
|
|
|
|
// Sign in. Allow any password.
|
|
_signedIn = true;
|
|
notifyListeners();
|
|
return _signedIn;
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) =>
|
|
other is BookstoreAuth && other._signedIn == _signedIn;
|
|
|
|
@override
|
|
int get hashCode => _signedIn.hashCode;
|
|
}
|
|
|
|
class BookstoreAuthScope extends InheritedNotifier<BookstoreAuth> {
|
|
const BookstoreAuthScope({
|
|
required BookstoreAuth notifier,
|
|
required Widget child,
|
|
Key? key,
|
|
}) : super(key: key, notifier: notifier, child: child);
|
|
|
|
static BookstoreAuth of(BuildContext context) => context
|
|
.dependOnInheritedWidgetOfExactType<BookstoreAuthScope>()!
|
|
.notifier!;
|
|
}
|