git@h5.yoqi.me 2 years ago
parent
commit
a967731da8

+ 1 - 0
.devcontainer/Dockerfile

@@ -0,0 +1 @@
+FROM jianboy/flutter-dev-container:2.10.5

+ 45 - 0
.devcontainer/devcontainer.json

@@ -0,0 +1,45 @@
+// java8 + android env
+// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
+// https://github.com/microsoft/vscode-dev-containers/tree/v0.233.0/containers/java-8
+{
+    "name": "Java 8",
+    "build": {
+        "dockerfile": "Dockerfile",
+        "args": {
+            // Use the VARIANT arg to pick a Debian OS version: buster, bullseye
+            // Use bullseye when running on local arm64/Apple Silicon.
+            "VARIANT": "buster",
+            // Options
+            "INSTALL_MAVEN": "true",
+            "INSTALL_GRADLE": "true",
+            "NODE_VERSION": "lts/*"
+        }
+    },
+    // Set *default* container specific settings.json values on container create.
+    "settings": {
+        "java.home": "/docker-java-home",
+        "java.import.gradle.java.home": "/usr/local/sdkman/candidates/java/current",
+        "java.configuration.runtimes": [
+            {
+                "default": true,
+                "name": "JavaSE-1.8",
+                "path": "/usr/local/sdkman/candidates/java/current"
+            }
+        ]
+    },
+    // Add the IDs of extensions you want installed when the container is created.
+    "extensions": [
+        "vscjava.vscode-java-pack",
+        "dart-code.dart-code",
+        "dart-code.flutter"
+    ],
+    // Use 'forwardPorts' to make a list of ports inside the container available locally.
+    // "forwardPorts": [],
+    // Use 'postCreateCommand' to run commands after the container is created.
+    // "postCreateCommand": "java -version",
+    // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
+    "remoteUser": "vscode",
+    "features": {
+        "docker-in-docker": "latest"
+    }
+}

+ 66 - 0
.gitpod.Dockerfile

@@ -0,0 +1,66 @@
+FROM gitpod/workspace-full-vnc
+SHELL ["/bin/bash", "-c"]
+
+ENV ANDROID_HOME=/home/gitpod/androidsdk \
+    FLUTTER_VERSION=2.10.5-stable
+
+# Install dart
+USER root
+RUN curl -fsSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
+    && curl -fsSL https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list \
+    && install-packages build-essential dart libkrb5-dev gcc make gradle android-tools-adb android-tools-fastboot
+
+# Install flutter
+USER gitpod
+RUN cd /home/gitpod \
+    && wget https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${FLUTTER_VERSION}.tar.xz \
+    && tar -xvf flutter*.tar.xz \
+    && rm -f flutter*.tar.xz
+
+RUN flutter/bin/flutter precache
+RUN echo 'export PATH="$PATH:/home/gitpod/flutter/bin"' >> /home/gitpod/.bashrc
+
+# Install Open JDK
+USER gitpod
+RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh && \
+    sdk install java 11.0.16-amzn && \
+    sdk default java 11.0.16-amzn"
+
+# Install SDK Manager
+USER gitpod
+RUN  wget https://dl.google.com/android/repository/commandlinetools-linux-7583922_latest.zip \
+    && mkdir -p $ANDROID_HOME/cmdline-tools/latest \
+    && unzip commandlinetools-linux-*.zip -d $ANDROID_HOME \
+    && rm -f commandlinetools-linux-*.zip \
+    && mv $ANDROID_HOME/cmdline-tools/bin $ANDROID_HOME/cmdline-tools/latest \
+    && mv $ANDROID_HOME/cmdline-tools/lib $ANDROID_HOME/cmdline-tools/latest
+
+RUN echo "export ANDROID_HOME=$ANDROID_HOME" >> /home/gitpod/.bashrc \
+    && echo 'export PATH=$ANDROID_HOME/emulator:$ANDROID_HOME/tools:$ANDROID_HOME/cmdline-tools/bin:$ANDROID_HOME/platform-tools:$PATH' >> /home/gitpod/.bashrc
+
+# Install Android Image version 30
+USER gitpod
+RUN yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager "platform-tools" "platforms;android-30" "emulator"
+RUN yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager "system-images;android-30;google_apis;x86_64"
+RUN echo no | $ANDROID_HOME/cmdline-tools/latest/bin/avdmanager create avd -n avd28 -k "system-images;android-30;google_apis;x86_64"
+
+
+# Install Google Chrome
+USER root
+RUN apt-get update \
+  && apt-get install -y apt-transport-https \
+  && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \
+  && echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list \
+  && apt-get update \
+  && sudo apt-get install -y google-chrome-stable
+
+# misc deps
+RUN apt-get install -y \
+  libasound2-dev \
+  libgtk-3-dev \
+  libnss3-dev \
+  fonts-noto \
+  fonts-noto-cjk
+
+# For Qt WebEngine on docker
+ENV QTWEBENGINE_DISABLE_SANDBOX 1

+ 75 - 0
.gitpod.yml

@@ -0,0 +1,75 @@
+image:
+  file: .gitpod.Dockerfile
+tasks:
+  - before: sudo mount -t tmpfs shm -osize=4096m /dev/shm
+  - init: |
+      flutter channel beta
+      flutter upgrade
+
+      # flutter config --enable-web
+      flutter config --android-sdk /home/gitpod/androidsdk
+      yes | flutter doctor --android-licenses
+
+      # flutter doctor
+
+      # flutter pub get
+
+      # flutter build -v bundle
+      # flutter build -v web
+      # flutter build -v appbundle
+      # flutter build -v apk
+      
+  # - command: |
+  #     # Gitpod is not able to run emulators within a worspace at this stage as
+  #     # Google Kubernetes Engine does not support Nested Virtualization.
+  #     #
+  #     # If running Gitpod on your own infrastructure or via the Dockerfile locally
+  #     # on infrastructure that exposes vmx or svm then this command will launch
+  #     # the emulator.
+  #     #
+  #     # $ emulator -avd avd28 -no-audio -no-window 
+  #     #
+  #     # Until this restriction is mitigated you can run native mobile apps in your
+  #     # browser via https://appetize.io/
+
+  #     if [[ -z "$APPETIZE_API_TOKEN" ]]; then
+  #         echo "Appetize API token not set. Run:"
+  #         echo ""
+  #         echo "    gp env APPETIZE_API_TOKEN=your_token"
+  #         echo ""
+  #         echo "and restart this workspace in order to get an app preview."
+  #         echo ""
+  #         echo "Request your token here: https://appetize.io/docs#request-api-token"
+  #     else
+  #         curl -sS --http1.1 "https://$APPETIZE_API_TOKEN@api.appetize.io/v1/apps/$APPETIZE_PUBLICKEY" \
+  #             -F "file=@/workspace/template-flutter/build/app/outputs/flutter-apk/app.apk" \
+  #             -F platform=android \
+  #             -F "buttonText=Start App" \
+  #             -F "postSessionButtonText=Start App" \
+  #             > .appetize.json
+
+  #         APPETIZE_PUBLICKEY=$(jq -r .publicKey .appetize.json)
+  #         gp env "APPETIZE_PUBLICKEY=$APPETIZE_PUBLICKEY"
+  #         export APPETIZE_PUBLICKEY
+
+  #         python -m webbrowser "https://appetize.io/embed/$APPETIZE_PUBLICKEY?device=pixel4&autoplay=true"
+  #     fi
+
+  #     flutter devices
+    
+  #     flutter run --web-port 8080
+
+
+ports:
+  - port: 5900
+    onOpen: ignore
+    # vnc
+  - port: 6080
+    onOpen: open-preview
+    # flutter
+  - port: 8080
+    onOpen: open-preview
+
+vscode:
+  extensions:
+    - dart-code.flutter

+ 2 - 2
android/build.gradle

@@ -2,7 +2,7 @@ buildscript {
     // ext.kotlin_version = '1.2.71'
     repositories {
         google()
-        jcenter()
+        mavenCentral()
     }
 
     dependencies {
@@ -15,7 +15,7 @@ buildscript {
 allprojects {
     repositories {
         google()
-        jcenter()
+        mavenCentral()
     }
 }
 

+ 2 - 1
lib/main.dart

@@ -27,7 +27,7 @@ Future main() async {
   prefs.setString("scheme_p", "http");
   prefs.setInt("ports_p", 80);
 
-  prefs.setString("picServer", "http://www.guojio.com");
+  // prefs.setString("picServer", "http://www.guojio.com");
 
   runApp(MyApp());
 }
@@ -39,6 +39,7 @@ class MyApp extends StatelessWidget {
   Widget build(BuildContext context) {
     return MaterialApp(
       title: "抖音",
+      debugShowCheckedModeBanner: false,
       theme: ThemeData(primaryColor: Color(0xff121319)),
       home: RecommendPage(
         selIndex: 0,

+ 6 - 6
lib/pages/RecommendPage/BottomSheet.dart

@@ -72,9 +72,9 @@ class ReplyList extends StatelessWidget {
     return Container(
       child: Column(
         mainAxisSize: MainAxisSize.min,
-        children: <Widget>[
+        children: [
           Row(
-            children: <Widget>[
+            children: [
               Container(
                 width: 100 * rpx,
                 height: 100 * rpx,
@@ -123,9 +123,9 @@ class AfterReply extends StatelessWidget {
     return Container(
       child: Column(
         mainAxisSize: MainAxisSize.min,
-        children: <Widget>[
+        children: [
           Row(
-            children: <Widget>[
+            children: [
               Container(
                 width: 100 * rpx,
               ),
@@ -133,7 +133,7 @@ class AfterReply extends StatelessWidget {
                 width: 550 * rpx,
                 child: Row(
                   crossAxisAlignment: CrossAxisAlignment.start,
-                  children: <Widget>[
+                  children: [
                     Container(
                       width: 70 * rpx,
                       height: 70 * rpx,
@@ -220,7 +220,7 @@ class BottomReplyBar extends StatelessWidget {
       decoration: BoxDecoration(
           border: Border(top: BorderSide(color: Colors.grey[200], width: 1))),
       child: Row(
-        children: <Widget>[
+        children: [
           Expanded(
               child: Container(
             padding: EdgeInsets.only(left: 30 * rpx),

+ 2 - 2
lib/pages/RecommendPage/FriendList.dart

@@ -113,7 +113,7 @@ genContentList(
           decoration: BoxDecoration(color: Color(0xff121319)),
           height: 130 * rpx,
           child: Row(
-            children: <Widget>[
+            children: [
               Container(
                 padding: EdgeInsets.all(15 * rpx),
                 width: 100 * rpx,
@@ -128,7 +128,7 @@ genContentList(
                     ? Column(
                         crossAxisAlignment: CrossAxisAlignment.start,
                         mainAxisAlignment: MainAxisAlignment.center,
-                        children: <Widget>[
+                        children: [
                           Container(
                             child: Text(
                               friends[index]["userName"],

+ 4 - 4
lib/pages/camera_main.dart

@@ -147,7 +147,7 @@ class _CameraMainState extends State<CameraMain> {
     }
     final size = MediaQuery.of(context).size;
     return _controller.value.isInitialized
-        ? Stack(children: <Widget>[
+        ? Stack(children: [
             // Camera.open(cameraId),
             findFace
                 ? Positioned(
@@ -193,7 +193,7 @@ class _CameraMainState extends State<CameraMain> {
                 child: FlatButton(
                   onPressed: () {},
                   child: Row(
-                    children: <Widget>[
+                    children: [
                       Icon(
                         Icons.music_note,
                         color: Colors.white,
@@ -484,7 +484,7 @@ class _ScrollBottomBarState extends State<ScrollBottomBar> {
               child: Container(
                 child: Row(
                   mainAxisSize: MainAxisSize.min,
-                  children: <Widget>[
+                  children: [
                     SizedBox(
                       width: eachSide,
                     ),
@@ -591,7 +591,7 @@ class IconWithText extends StatelessWidget {
   @override
   Widget build(BuildContext context) {
     return Column(
-      children: <Widget>[
+      children: [
         icon,
         Text(
           text,

+ 9 - 9
lib/pages/home_page.dart

@@ -200,10 +200,10 @@ class SliverTopBar extends StatelessWidget {
   Widget build(BuildContext context) {
     double rpx = MediaQuery.of(context).size.width / 750;
     return Stack(
-      children: <Widget>[
+      children: [
         Column(
           mainAxisSize: MainAxisSize.min,
-          children: <Widget>[
+          children: [
             Image.asset(
               "assets/images/temple.jpg",
               width: 750 * rpx,
@@ -215,7 +215,7 @@ class SliverTopBar extends StatelessWidget {
               height: 120 * rpx,
               child: Row(
                 mainAxisAlignment: MainAxisAlignment.end,
-                children: <Widget>[
+                children: [
                   Container(
                       height: 80 * rpx,
                       width: 330 * rpx,
@@ -263,7 +263,7 @@ class SliverTopBar extends StatelessWidget {
                 padding: EdgeInsets.symmetric(horizontal: 30 * rpx),
                 child: Column(
                   crossAxisAlignment: CrossAxisAlignment.start,
-                  children: <Widget>[
+                  children: [
                     Text(
                       "马友发",
                       style: TextStyle(
@@ -291,9 +291,9 @@ class SliverTopBar extends StatelessWidget {
                 padding: EdgeInsets.symmetric(horizontal: 20 * rpx),
                 child: Row(
                   mainAxisAlignment: MainAxisAlignment.spaceBetween,
-                  children: <Widget>[
+                  children: [
                     Row(
-                      children: <Widget>[
+                      children: [
                         Icon(
                           Icons.shop,
                           color: Color(0xffeacd3f),
@@ -326,7 +326,7 @@ class SliverTopBar extends StatelessWidget {
               padding: EdgeInsets.symmetric(
                   horizontal: 20 * rpx, vertical: 10 * rpx),
               child: Row(
-                children: <Widget>[
+                children: [
                   Tag(
                     text: "深圳",
                   ),
@@ -343,7 +343,7 @@ class SliverTopBar extends StatelessWidget {
               padding: EdgeInsets.symmetric(
                   horizontal: 20 * rpx, vertical: 30 * rpx),
               child: Row(
-                children: <Widget>[
+                children: [
                   NumWithDesc(
                     numm: "100.2w",
                     desc: "获赞",
@@ -412,7 +412,7 @@ class NumWithDesc extends StatelessWidget {
     return Padding(
         padding: EdgeInsets.only(right: 20 * rpx),
         child: Row(
-          children: <Widget>[
+          children: [
             Text(
               numm,
               style: TextStyle(

+ 9 - 9
lib/pages/same_city_page.dart

@@ -30,15 +30,15 @@ class SameCityMain extends StatelessWidget {
                 child: SafeArea(child: BtmBar(selectIndex: selIndex))),
             body: Column(
               mainAxisSize: MainAxisSize.min,
-              children: <Widget>[
+              children: [
                 Container(
                     height: 120 * rpx,
                     padding: EdgeInsets.all(20 * rpx),
                     child: Row(
                       mainAxisAlignment: MainAxisAlignment.spaceBetween,
-                      children: <Widget>[
+                      children: [
                         Row(
-                          children: <Widget>[
+                          children: [
                             Icon(
                               Icons.near_me,
                               color: Colors.grey[400],
@@ -50,7 +50,7 @@ class SameCityMain extends StatelessWidget {
                           ],
                         ),
                         Row(
-                          children: <Widget>[
+                          children: [
                             Text("切换",
                                 style: TextStyle(color: Colors.grey[400])),
                             Icon(Icons.arrow_right, color: Colors.grey[400])
@@ -65,7 +65,7 @@ class SameCityMain extends StatelessWidget {
                             padding: EdgeInsets.symmetric(horizontal: 10 * rpx),
                             child: Row(
                               crossAxisAlignment: CrossAxisAlignment.start,
-                              children: <Widget>[
+                              children: [
                                 Flexible(
                                     flex: 1,
                                     child: WaterFallList(
@@ -107,9 +107,9 @@ class WaterFallList extends StatelessWidget {
             margin: EdgeInsets.only(bottom: 10 * rpx),
             child: Column(
               mainAxisSize: MainAxisSize.min,
-              children: <Widget>[
+              children: [
                 Stack(
-                  children: <Widget>[
+                  children: [
                     Container(
                         width: 345 * rpx,
                         padding: EdgeInsets.symmetric(horizontal: eachSide),
@@ -126,9 +126,9 @@ class WaterFallList extends StatelessWidget {
                           padding: EdgeInsets.all(eachSide + 10 * rpx),
                           child: Row(
                             mainAxisAlignment: MainAxisAlignment.spaceBetween,
-                            children: <Widget>[
+                            children: [
                               Row(
-                                children: <Widget>[
+                                children: [
                                   Icon(
                                     Icons.near_me,
                                     color: Colors.grey[400],

+ 2 - 2
lib/views/btn_content.dart

@@ -11,7 +11,7 @@ class BtnContent extends StatelessWidget {
     return Container(
       child: Column(
         mainAxisSize: MainAxisSize.min,
-        children: <Widget>[
+        children: [
           ListTile(
             title: Text(
               "@${provider.mainInfo.userName}",
@@ -25,7 +25,7 @@ class BtnContent extends StatelessWidget {
             ),
           ),
           Row(
-            children: <Widget>[
+            children: [
               SizedBox(
                 width: 10,
               ),

+ 2 - 2
lib/views/button_list.dart

@@ -62,12 +62,12 @@ class _ButtonListState extends State<ButtonList> {
       child: Column(
         mainAxisAlignment: MainAxisAlignment.spaceAround,
         crossAxisAlignment: CrossAxisAlignment.center,
-        children: <Widget>[
+        children: [
           Container(
               width: 90 * rpx,
               height: 105 * rpx,
               child: Stack(
-                children: <Widget>[
+                children: [
                   Container(
                       // decoration: BoxDecoration(c),
                       width: 90 * rpx,

+ 1 - 1
lib/views/icon_text.dart

@@ -14,7 +14,7 @@ class IconText extends StatelessWidget {
         mainAxisSize: MainAxisSize.min,
         mainAxisAlignment: MainAxisAlignment.center,
         crossAxisAlignment: CrossAxisAlignment.center,
-        children: <Widget>[
+        children: [
           icon,
           Container(
               // alignment: Alignment.center,

+ 1 - 1
lib/views/main_tab_view.dart

@@ -14,7 +14,7 @@ class MainTabView extends StatelessWidget {
     RecommendProvider provider = Provider.of<RecommendProvider>(context);
     return TabBarView(
       controller: provider.controller,
-      children: <Widget>[
+      children: [
         SwiperMain(
           type: "关注",
         ),

+ 0 - 1
lib/widgets/WebRequest.dart

@@ -36,7 +36,6 @@ class WebRequest extends Object {
     }
     Uri url = Uri(
         scheme: scheme,
-        //http https
         host: hosts,
         port: ports,
         path: path,

+ 2 - 2
lib/widgets/bottom_bar.dart

@@ -101,7 +101,7 @@ class _BtmBarState extends State<BtmBar> {
     return Container(
       child: Row(
         mainAxisAlignment: MainAxisAlignment.spaceAround,
-        children: <Widget>[
+        children: [
           Expanded(
               flex: 1,
               child: getBtmTextWidget("首页", selected[0], () {
@@ -173,7 +173,7 @@ class AddIcon extends StatelessWidget {
             tapItem();
           },
           child: Stack(
-            children: <Widget>[
+            children: [
               Positioned(
                 height: iconHeight,
                 width: totalWidth - eachSide,