-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathresult_screen.dart
52 lines (48 loc) · 2.21 KB
/
result_screen.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* TRUECALLER SDK COPYRIGHT, TRADEMARK AND LICENSE NOTICE
*
* Copyright © 2015-Present, True Software Scandinavia AB. All rights reserved.
*
* Truecaller and Truecaller SDK are registered trademark of True Software Scandinavia AB.
*
* In accordance with the Truecaller SDK Agreement available
* here (https://developer.truecaller.com/Truecaller-sdk-product-license-agreement-RoW.pdf)
* accepted and agreed between You and Your respective Truecaller entity, You are granted a
* limited, non-exclusive, non-sublicensable, non-transferable, royalty-free, license to use the
* Truecaller SDK Product in object code form only, solely for the purpose of using
* the Truecaller SDK Product with the applications and APIs provided by Truecaller.
*
* THE TRUECALLER SDK PRODUCT IS PROVIDED BY THE COPYRIGHT HOLDER AND AUTHOR “AS IS”,
* WITHOUT WARRANTY OF ANY KIND,EXPRESS OR IMPLIED,INCLUDING BUT NOT LIMITED
* TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
* SOFTWARE QUALITY,PERFORMANCE,DATA ACCURACY AND NON-INFRINGEMENT. IN NO
* EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR
* OTHER LIABILITY INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THE TRUECALLER SDK PRODUCT OR THE USE
* OR OTHER DEALINGS IN THE TRUECALLER SDK PRODUCT, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. AS A RESULT, BY INTEGRATING THE TRUECALLER SDK
* PRODUCT YOU ARE ASSUMING THE ENTIRE RISK AS TO ITS QUALITY AND PERFORMANCE.
*/
import 'package:flutter/material.dart';
class ResultScreen extends StatelessWidget {
final String result;
ResultScreen(this.result);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Result Page"),
),
body: Center(
child: Text(
"$result!",
style: TextStyle(fontSize: 20.0, letterSpacing: 5.0),
),
),
);
}
}