This tutorial will teach you how to make make a Currency Converter App in Flutter step by step.it will help you convert the currency easily. Main.dart [php] import ‘package:currency_converter/currect_converter.dart’; import ‘package:flutter/material.dart’; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: ‘Flutter Demo’, …
Currency Converter App in Flutter