This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MyApp(), | |
); | |
} | |
class ApRatio extends StatelessWidget { | |
final double aspectRatio; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Launching lib\main.dart on Android SDK built for x86 in debug mode... | |
Running Gradle task 'assembleDebug'... | |
Parameter format not correct - | |
β Built build\app\outputs\apk\debug\app-debug.apk. | |
Installing build\app\outputs\apk\app.apk... | |
Debug service listening on ws://127.0.0.1:51380/LlQGC9wd91s=/ws | |
Syncing files to device Android SDK built for x86... | |
D/HostConnection(24981): HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_vulkan ANDROID_EMU_deferred_vulkan_commands ANDROID_EMU_vulkan_null_optional_strings ANDROID_EMU_vulkan_create_resources_with_requirements ANDROID_EMU_YUV420_888_to_NV21 ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_gles_max_version_2 | |
D/EGL_emulation(24981): eglMakeCurrent: 0xdd11a060: ver 2 0 (tinfo 0xdd10f070) | |
D/EGL_emulation(24981): eglMakeCurrent: 0xdd11a300: ver 2 0 (tinfo 0xdd10f7d0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:google_fonts/google_fonts.dart'; | |
import 'package:netflixclone/dummyData.dart'; | |
class InfoScreen extends StatelessWidget { | |
int index; | |
String imageUrl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
import 'package:flutter/material.dart'; | |
import 'package:google_fonts/google_fonts.dart'; | |
import 'infoScreen.dart'; | |
class NetflixTabBar extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:arcore_flutter_plugin/arcore_flutter_plugin.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:vector_math/vector_math_64.dart' as vector; | |
void main() { | |
runApp(HelloWorld()); | |
} | |
class HelloWorld extends StatefulWidget { | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:transactions/list.dart'; | |
import 'main.dart'; | |
class SizeAnimation extends StatelessWidget { | |
static const routeName = 'Size_Animation'; | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/animation.dart'; | |
List<Curve> curveList = [ | |
Curves.bounceIn, | |
Curves.bounceInOut, | |
Curves.bounceOut, | |
Curves.decelerate, | |
Curves.ease, | |
Curves.easeIn, | |
Curves.easeInBack, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'RotationAnimation.dart'; | |
import 'fadeAnimation.dart'; | |
import 'scaleAnimation.dart'; | |
import 'sizeAnimation.dart'; | |
import 'slideAnimation.dart'; | |
main() { | |
runApp(MaterialApp( |