blob: 8d929d7ef835e3e5c3b6b55fece7a9fc7a7e1649 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. 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/material.dart';
import 'stub.dart';
/// Renders a SIGN IN button that calls `handleSignIn` onclick.
Widget buildSignInButton({HandleSignInFn? onPressed}) {
return ElevatedButton(
onPressed: onPressed,
child: const Text('SIGN IN'),
);
}