Commit a9222f80 authored by tuoli's avatar tuoli

暴露boostcontainer数组;

debug模式下statusbar处理异常时不强制抛runtime exception,只打印异常日志;
parent c4c429b6
...@@ -185,7 +185,8 @@ public class Utils { ...@@ -185,7 +185,8 @@ public class Utils {
} }
} }
}catch (Throwable t){ }catch (Throwable t){
Debuger.exception(t); // Debuger.exception(t);
t.printStackTrace();
} }
} }
......
...@@ -83,6 +83,8 @@ class ContainerManagerState extends State<BoostContainerManager> { ...@@ -83,6 +83,8 @@ class ContainerManagerState extends State<BoostContainerManager> {
//Number of containers. //Number of containers.
int get containerCounts => _offstage.length; int get containerCounts => _offstage.length;
List<BoostContainer> get offstage => _offstage;
//Setting for current visible container. //Setting for current visible container.
BoostContainerSettings get onstageSettings => _onstage.settings; BoostContainerSettings get onstageSettings => _onstage.settings;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment