(Добавление экрана Flutter в приложение iOS)

// AppDelegate.swift

import UIKit

import Flutter

import FlutterPluginRegistrant

@UIApplicationMain

class AppDelegate: FlutterAppDelegate {

    

    var flutterEngine : FlutterEngine?;

    

    override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

        self.flutterEngine = FlutterEngine(name: "io.flutter", project: nil);

        self.flutterEngine?.run(withEntrypoint: nil);

        GeneratedPluginRegistrant.register(with: self.flutterEngine!);

        return super.application(application, didFinishLaunchingWithOptions: launchOptions);

    }

}

// ViewController.swift

// ...

import Flutter

class ViewController: UIViewController {

    

    // ...

    

    @IBAction func calculatePressed(_ sender: UIButton) {

        // ...

        let flutterEngine = ((UIApplication.shared.delegate as? AppDelegate)?.flutterEngine)!;

        let flutterViewController = FlutterViewController(engine: flutterEngine, nibName: nil, bundle: nil);

        self.present(flutterViewController, animated: true, completion: nil)

    }

}

(Завершение пользовательского интерфейса Flutter)

// main.dart

import 'dart:convert';

import 'package:flutter/material.dart';

import 'package:flutter/services.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {

  @override

  Widget build(BuildContext context) {

    return MaterialApp(

      title: 'BMI Calculator Module',

      theme: ThemeData(

        primarySwatch: Colors.blue,

      ),

      home: MyHomePage(),

      debugShowCheckedModeBanner: false,

    );

  }

}

class MyHomePage extends StatefulWidget {

  @override

  _MyHomePageState createState() => _MyHomePageState();

}

class _MyHomePageState extends State<MyHomePage> {

  Future<void> _receiveFromHost(MethodCall call) async {

    // To be implemented.

    // Will be used for retrieving data passed from

    // the native iOS app.

  }

  @override

  Widget build(BuildContext context) {

    return Scaffold(

      body: Container(

        color: Colors.blue,

        child: Center(

          child: Column(

            mainAxisSize: MainAxisSize.max,

            mainAxisAlignment: MainAxisAlignment.center,

            crossAxisAlignment: CrossAxisAlignment.center,

            children: <Widget>[

              Text(

                'YOUR BMI',

                style: TextStyle(

                    color: Colors.white,

                    fontSize: 40,

                    fontWeight: FontWeight.bold),

              ),

              Text(

                '23.7',

                style: TextStyle(

                    color: Colors.white,

                    fontSize: 70,

                    fontWeight: FontWeight.bold),

              ),

              Text(

                'Fit as a fiddle!',

                style: TextStyle(

                  color: Colors.white,

                  fontSize: 20,

                ),

              ),

            ],

          ),

        ),

      ),

    );

  }

}

(Использование Platform Channel)

// main.dart

static const platform = const MethodChannel('com.souvikbiswas.bmi/data');

// main.dart

Future<void> _receiveFromHost(MethodCall call) async {

   var jData;

 

   try {

     print(call.method);

 

     if (call.method == "fromHostToClient") {

       final String data = call.arguments;

       print(call.arguments);

       jData = await jsonDecode(data);

     }

   } on PlatformException catch (error) {

     print(error);

   }

 

   setState(() {

     jData1 = jData;

     if (jData['color'] == 'blue') {

       color = Colors.blue;

     } else if (jData['color'] == 'green') {

       color = Colors.green;

     } else {

       color = Colors.pink;

     }

   });

 }

// main.dart

_MyHomePageState() {

     platform.setMethodCallHandler(_receiveFromHost);

}

// main.dart

 @override

  Widget build(BuildContext context) {

    return Scaffold(

      body: Container(

        color: color, // Updated

        child: Center(

          child: Column(

            // ...

            children: <Widget>[

              Text(

                'YOUR BMI',

                // ...

              ),

              Text(

                jData1['value'], // Updated

                // ...

              ),

              Text(

                jData1['advice'], // Updated

                // ...

              ),

            ],

          ),

        ),

      ),

    );

  }

}// main.dart

 @override

  Widget build(BuildContext context) {

    return Scaffold(

      body: Container(

        color: color, // Updated

        child: Center(

          child: Column(

            // ...

            children: <Widget>[

              Text(

                'YOUR BMI',

                // ...

              ),

              Text(

                jData1['value'], // Updated

                // ...

              ),

              Text(

                jData1['advice'], // Updated

                // ...

              ),

            ],

          ),

        ),

      ),

    );

  }

}

// Define inside calculatePressed() method

let bmiDataChannel = FlutterMethodChannel(name: "com.souvikbiswas.bmi/data", binaryMessenger: flutterViewController.binaryMessenger)

// Define inside calculatePressed() method

 let bmiDataChannel = FlutterMethodChannel(name: "com.souvikbiswas.bmi/data", binaryMessenger: flutterViewController.binaryMessenger)

     

 let jsonObject: NSMutableDictionary = NSMutableDictionary()

 jsonObject.setValue(bmiValue, forKey: "value")

 jsonObject.setValue(bmiAdvice, forKey: "advice")

 jsonObject.setValue(bmiColor, forKey: "color")

 

 var convertedString: String? = nil

 

 do {

     let data1 =  try JSONSerialization.data(withJSONObject: jsonObject, options: JSONSerialization.WritingOptions.prettyPrinted)

     convertedString = String(data: data1, encoding: String.Encoding.utf8)

 } catch let myJSONError {

     print(myJSONError)

 }

     

 bmiDataChannel.invokeMethod("fromHostToClient", arguments: convertedString)// Define inside calculatePressed() method

 let bmiDataChannel = FlutterMethodChannel(name: "com.souvikbiswas.bmi/data", binaryMessenger: flutterViewController.binaryMessenger)

     

 let jsonObject: NSMutableDictionary = NSMutableDictionary()

 jsonObject.setValue(bmiValue, forKey: "value")

 jsonObject.setValue(bmiAdvice, forKey: "advice")

 jsonObject.setValue(bmiColor, forKey: "color")

 

 var convertedString: String? = nil

 

 do {

     let data1 =  try JSONSerialization.data(withJSONObject: jsonObject, options: JSONSerialization.WritingOptions.prettyPrinted)

     convertedString = String(data: data1, encoding: String.Encoding.utf8)

 } catch let myJSONError {

     print(myJSONError)

 }

     

 bmiDataChannel.invokeMethod("fromHostToClient", arguments: convertedString)

Хотите связаться с владельцем
компании напрямую?
Дмитрий Тарасов
Дмитрий Тарасов
СЕО

НАПИСАТЬ